/* input styling */
.custom-input{
    display: block;
    width: 100%;
    padding: .375rem .95rem;
    font-size: 1rem;
    height: 52px;
    margin-bottom: 1rem;
    border-radius: 40px;
    background: white;
    color: #495057;
    border: none;
    transition: background 0.5s;
    box-shadow: 0px 5px 8px rgb(0, 0, 0, 0.12);
}
.custom-input:focus{
    outline-width: 0;
    box-shadow: 0px 8px 10px rgb(0, 0, 0, 0.12);
}
.custom-input:disabled{
    color: #A3A3A3;
    border-bottom: none;
    background-color: #D3D3D3;
}
.custom-label {
    color: #FE684D;
    font-size: 15px;
    margin-bottom: 6px;
    margin-left: 15px;
}
