html {
    height: 100%;
    width: 100%;
    background-image: url(/assets/img/registration/film_grain_texture_2k_black.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

a {
    text-decoration: underline;
}

a:hover {
    transition: all 0.3s ease;
    color: #DD75F2;
}

.container {
    height: 80%;
    align-items: center;
    padding-top: 60px;
    z-index: 1;
}

.logo {
    width: 180px;
    height: 119px;
}

.invalid-feedback {
    display: flex;
    font-family: 'Futura', Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    line-height: 0%;
    color: red;
    width: 320px;
    margin-top: -5px;
    margin-right: -5px;
}

.text_futura_10 {
    font-family: 'Futura', Arial, sans-serif;
    font-style: normal;
    font-weight: 200;
    font-size: 10px;
    line-height: 140%;
}

.text_futura_14 {
    font-family: 'Futura', Arial, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
}

.text_futura_bold_16 {
    font-family: 'Futura', Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
}

.text_futura_bold_20 {
    font-family: 'Futura', Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
}

.text_futura_bold_24 {
    font-family: 'Futura', Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
}

.text_white {
    color: #FFF7F1;
}

.text_black {
    color: #000000;
}

.logo_and_login_text {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding-bottom: 4%;
}

.login_text {
    padding-top: 32px;
}

.show_password {
    background: none;
    border: none;
    cursor: pointer;
    outline: inherit;
    margin-left: -55px;
}

.eye_image {
    height: 20px;
    width: 30px;
}

.password_input_and_show_password_div {
    display: flex;
    align-items: center; 
    justify-content: center;
    padding-right: 12px;
}

.username_div {
    text-align: left;
    width: 320px;
}

.password_section {
    width: 320px;
}

.input_div {
    margin-left: auto;
    margin-right: auto;
    width: 700px;
    height: 312px;
    padding-top: 40px;
    padding-bottom: 40px;
    background: #FFF7F1;
    border: 3px solid #000000;
    box-shadow: 0px 4px 7px 3px rgba(0, 0, 0, 0.25);
    border-radius: 36px;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.input_field {
    width: 320px;
    height: 48px;
    box-sizing: border-box;
    border: 2px solid #000000;
    border-radius: 7px;
    background-color: #FFF7F1;
}

.login_button {
    width: 320px;
    height: 48px;
    background: #000000;
    border-radius: 11px;
}

.login_button:hover {
    transition: all 0.3s ease;
    background-color: #DD75F2;
    border-color: #DD75F2;
}

.login_button:disabled {
    background-color: #b9a6bd;
    border-color: #b9a6bd;
}

.login_button_subfields {
    width: 320px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.try_new_ui_button {
    background-color: #DD75F2;
    border-color: #DD75F2;
    cursor: pointer;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4%;
    background-color: #01AA25;
}

.support_div {
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 100%;
}

.support_link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.support_link:hover {
    transition: all 0.3s ease;
    color: #000000;
}

.hand_pointer {
    cursor: pointer;
    cursor: hand;
}

.modalBackground {
    display: none;
    background-color: rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.addModal{
    display: none;
    z-index: 2;
    left: 0;
    top: 0;
    overflow: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.addModalContent {
    color: #FFF7F1;
    height: auto;
    width: 825px;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
}

.addModalHeader {
    padding: 15px 30px;
    background-color: #01AA25;
    color: FFF7F1;
    height: 60px;
    font-size: 150%;
    font-weight: bold;
    text-align: center;
}

.addModalBody {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 15px 50px 15px 50px;
    font-size: 130%;
    text-align: center;
}

.addModalFooter {
    height: 75px;
    background-color: FFF7F1;
    font-size: 120%;
}

.addModalFooter td {
    text-align: center;
    padding: 15px;
}

.addModal #addModalConfirm {
    background: #01AA25;
    color: #FFF7F1;
    font-weight: bold;
    border: 0;
    height: 45px;
    width: 250px;
    padding: 10px;
    border-radius: 10px;
}

.addModalProd {
    float: left;
    background-color: #01AA25;
    color: #FFF7F1;
    font-weight: bold;
    border: 0;
    height: 45px;
    width: 300px;
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
}

.addModalProd:hover {
    transition: all 0.3s ease;
    background-color: #DD75F2;
    cursor: hand;
}

.disabledAddModal {
    background: grey !important;
    color: black !important;
}

.disabledAddModal:hover {
    background: grey !important;
    color: black !important;
}

/* Copying toast stuff from _con.css so toast works */
#toast-container {
    display: block;
    position: fixed;
    z-index: 1001; }
    @media only screen and (max-width : 600px) {
      #toast-container {
        min-width: 100%;
        bottom: 0%; }
        #toast-container .toast {
          margin-top: 10px;
          margin-bottom: 0; } }
    @media only screen and (min-width : 601px) and (max-width : 992px) {
      #toast-container {
        min-width: 30%;
        top: 75px;
        right: 20px; } }
    @media only screen and (min-width : 993px) {
      #toast-container {
        min-width: 8%;
        top: 75px;
        right: 20px; } }
  
  .toast {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    box-sizing: border-box;
    top: 0px;
    width: auto;
    clear: both;
    margin-bottom: 10px;
    position: relative;
    max-width: 100%;
    height: 48px;
    font-family: 'Futura', Arial, sans-serif;
    font-style: normal;
    font-weight: 200;
    font-size: 9px;
    line-height: 140%;
    line-height: 48px;
    background-color: #323232;
    padding: 0px 25px;
    font-size: 1.1rem;
    font-weight: 300;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
            align-items: center;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .toast .btn, .toast .btn-large, .toast .btn-flat {
      margin: 0;
      margin-left: 3rem; }
    .toast.rounded {
      border-radius: 24px; }
    @media only screen and (max-width : 600px) {
      .toast {
        width: 100%;
        border-radius: 0; } }
    @media only screen and (min-width : 601px) and (max-width : 992px) {
      .toast {
        float: left; } }
    @media only screen and (min-width : 993px) {
      .toast {
        float: right; } }