:root {
    --main-bright-orange: #e2ac08;/*formerly #f0bb1f but CR with white was below 2:1*/
    --main-light-orange: #fff1da;
    --text-black: #212832;
    --text-white: #ffffff;
    --text-red: #df6951;
    --text-grey-green: #5e6282;
    --bg-off-orange: #fff8e8;
    --bg-shadow: #e2e2e2;
    --main-bright-purple: #8011f1;
}

/*remove default border and padding*/

#loginform table td {
    background: var(--bg-off-orange);
    text-align: right;
    color: black;
}

.login-body .box-login {
    background: var(--bg-off-orange);
    box-sizing: border-box;
    border-radius: 10px;
    top: 50%;
    min-width: 20em;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    left: 50%;
 }

.login-body {
    background-size: cover;
    background: var(--bg-off-orange);
    background-image: url(elements_flightrefund/anonBackground.png);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.logoFlight{
    float: left;
    padding: 8px;
    width: 45%;
}

#loginform .loginTitle {
    color: black;
    text-align: left;
    font-size: 20pt;
    padding: 17px 17px 20px 17px;
}

#loginform input[type="submit"].login-button {
    background-color: var(--main-bright-purple);
    border-radius: 50px;
    border-width: 0;
    box-shadow: rgb(25 25 25 / 4%) 0 0 1px 0, rgb(0 0 0 / 10%) 0 3px 4px 0;
    color: var(--text-white);
    cursor: pointer;
    display: inline-block;
    font-family: 'bioSans_regular';
    font-size: 1em;
    height: 35px;
    padding: 0 25px;
    transition: all 200ms;
    float: none;
    width: -webkit-fill-available;
    width: -moz-available;
}

#loginform input[type="submit"].login-button:hover {
    background-color: var(--main-bright-purple);
    /*box-shadow: 0px 1px 8px 0px var(--main-bright-purple);*/
    transform: scale(1.05);
}

#loginform input[type="submit"].register-button {
    border: 2px solid green;
    background-color: white;
    border-radius: 50px;
    color: green;
    cursor: pointer;
    display: inline-block;
    font-family: Arial,sans-serif;
    font-size: 1em;
    height: 35px;
    padding: 0 25px;
    transition: all 200ms;
    float: none;
    width: -webkit-fill-available;
    margin-bottom: 1.5em;
}

#loginform .login-orDivider {
    display: flex;
    align-items: center;
    text-transform: lowercase;
    margin: 0 1.2em;
}

.login-orDivider > span {
    color: #c6c6c6;
    margin: 0 2em;
}

.login-orDivider:after, .login-orDivider:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #c6c6c6;
}

#body {
    width: 100vw;
    float: right;
    position: relative;
    left: 0px;
}

#loginform table td label {
    font-weight: lighter;
    color: #000000;
}

#loginform input {
    border-radius: 20px;
    background: #c6c6c6;
}

div.pwdRecovery > a {
    color: #000000;
    display: block;
    width: fit-content;
    margin: auto;
    text-align: center;
    transition: all ease-in-out 0.2s;
}

div.pwdRecovery > a:hover {
    color: var(--main-bright-orange);
    font-weight: bold;
    text-decoration: none;
}

/*RESPONSIVE FOR RECOVERY LINK*/
input, textarea, select {
    margin: 0.2em 0.2em;
    padding: 0.5em 0.2em;
}

#loginform input[type="text"], #loginform input[type="password"] {
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e5e5eb!important;
    width: 97%;
}

#loginform input[type="text"]:focus, #loginform input[type="password"]:focus {
    border: 1px solid #0075ff!important;
}

input[type=text], input[type=password], input[type=tel], input[type=email], input[type=url], input[type=week], input[type=search], input[type=number], input[type=month], input[type=datetime-local], input[type=date] {
    border-radius: 0.5em;
    min-width: 200px;
    font-weight: normal;
    background: #f5f5f5;
    border: none;
    width: auto;
}

select, textarea, input, .inputIcon, .lovButton label {
    color: #000000;
    font-size: 100%;
    padding-left: 15px;
}

@media (max-width: 799px) {
    .logoFlight {
        width: 320px;
    }
}

@-moz-document url-prefix() {
    #loginform input[type="submit"].login-button {/*hacky fix to firefox inability to render bioSans bold*/
        font-weight: normal!important;
        text-shadow: 0.5px 0px;
    }
}