.form-custom .input-field {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    background-color: transparent; /* Fondo transparente para ver la línea */
    transition: border-bottom-color 0.3s; /* Transición suave del color de la línea */
}

.form-custom .input-field:focus {
    border-bottom-color: #ffd43b; /* Cambia a amarillo cuando está en focus */
}

.form-custom label {
    color: #ffd43b;
}