/* Standard Form 
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Form Label */
.form_label {
    position: relative;
    top: -75px;
    margin-top: 1rem;
}


/* Form Container
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.form_row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


/* Form Text Input
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.form_text_input {
    border-radius: 4px;
    width: auto;
    appearance: none;
    border: 0.5px solid #CCCCCC;
    background: none;
    color: white;
    margin-bottom: 0px;
    display: flex;
    padding: 2.5px;
    position: relative;
    margin-top: 1rem;
    min-width: 200px;
    text-overflow: ellipsis;    
}
  
.form_text_input:hover {
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.30), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);    
    border: 0.5px solid #FFFFFF;
}


/* Form Dropdown
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* .dropdown form_dropdown_label label {
    position: relative!important;
    top: -110px!important;
    margin-top: 1rem!important;
} */


