/* Floating Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.form-floating>.form-control, .form-floating>.form-select {
    border-radius: 6px;
    height: 45px;
    margin-bottom: 15px;
    background: none;
    border: 1px solid white;
}

/* Style the default value (placeholder) */
.form-floating .form-control::placeholder {
    color: #868E96; 
}

/* Style the user inputted value */
.form-floating .form-control {
    color: #FFFFFF; 
}

/* Style the input text when it's in focus (user is actively typing) */
.form-floating .form-control:focus {
    border-color: #FFFFFF; 
}


/* Form User Input Box (c.add_text_input) */
/* .form-floating-input {
    border: .5px solid #D5D5D5;
    border-radius: 6px;
    width: auto;
    appearance: none;
    color: white;
    margin-bottom: 15px;
    padding: 1rem .75rem;
    text-overflow: ellipsis;    
    background-color: transparent;
    transition: 0.2s ease;
} */


/* Form Label (dbc.label) */
/* .form-floating-label {
    position: absolute;
    font-size: 1.6em;
    color: white;
    padding: 0px;
    top: 0;
    left: 0;
    background-color: transparent;
    transition: 0.2ease;
} */

/* FLoating Design */
/* .form-floating-label:valid,
.form-floating-label:focus {
    color: grey;
    transform: translate(-15px, -16px) scale(0.88);
    font-size: 1em;
    height: 30px;
    line-height: 30px;
} */

/* Form Subtext */
/* .form_floating_subtext {
    font-size: 14px;
    color: #D5D5D5;
}   */

/* Invalid Inputs */
/* .form-floating-input input:invalid {
    border-color: red;
    border-radius: 6px;
} */