.converter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.converter-form input,
.converter-form select,
.converter-form button,
.converter-form p.project-two {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    border-radius: 5px;
    font-size: 1rem;
    text-align: left;
}

.converter-form input,
.converter-form select {
    border: 1px solid #29292e;
    background-color: #1a1a1e;
    color: #e1e1e6;
}

.converter-form button {
    background-color: #00adb5;
    color: #ffffff;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
}

.converter-form button:hover {
    background-color: #007a80;
}

.converter-form p.project-two {
    background-color: #1e1e1e;
    color: #d4d4d4;
    margin: 0;
}