/* _form.scss overide */
button, 
input[type="password"], 
input[type="text"],
input[type="email"],
select, 
textarea {
    width: 100%;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
}

input[type="password"],
input[type="text"],
input[type="email"],
select,
textarea {
    background-color: #fff;
    border: 1px solid #dedeea;
    color: #3e3f5e;
    transition: border-color .2s ease-in-out;
}

input[type="password"],
input[type="text"],
input[type="email"] {
    height: 54px;
    padding: 0 18px;
}

input[type="password"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    border-color: #615dfa;
}

.form-control:focus {
    box-shadow: none;
}
