

.login_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
  }
  

.login_top_flex{
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.login_top_logo{
    width: 200px;
}
.login_top_logo img{
    width: inherit;
}

.login_top_text{
    text-align: center;
}
.no_margin{
    margin: 0;

}
.login_custom_text{
    font-family: 'Unica One';
    font-size: 32px;
    overflow-wrap: break-word;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}
.login_middle_flex{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(236, 236, 236, 1);
    padding-top: 20px;
    padding-bottom: 20px;
}

.login_middle_flex_column{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 400px;
    min-height: 400px;
}

.login_middle_text{
    font-family: "Unica One";
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    padding: 0;
    display: block;
    color: #000;
    text-transform: none;
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
}

.login_middle_form{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 200px;
}
.login_middle_form label{
    text-align: center;
    margin: 0;
    padding: 0;
}
.login_middle_forgot_password{
    text-align: center;
    font-style: italic;
    color: rgb(250, 80, 0) ;
    font-size: 14px;

}


.login_bottom_text{
    font-style: italic;
    text-align: center;
    max-width: 200px;
    font-size: 14px;
    line-height: 21px;
}

.login_page_button{
    width: 100%;
    height: 35px;
    background: #fa5000;
    color: white;
    border: 2px solid #fa5000;
    cursor: pointer;
}
.login_page_button:hover{
    background: white;
    color: #fa5000;
    border: 2px solid #fa5000;
}
.login_page_button:active {
    background: white;
    color: #fa5000;
    border: 2px solid #fa5000;
  }
  .login_page_button:focus {
    outline-color: #fa5000;
  }
.login_page_button:disabled{
    cursor: not-allowed;
    opacity: 0.5;
}

.sign_up_div{
  min-height: 10vh;
}

.login_middle_logo{
    display: flex;
    flex-direction: column;
}

.login_bottom_flex{
    display: flex;
    flex-direction: column;

}
.sign_up_button{
    display: block;
    width: 200px;
    height: 45px;
    background: white;
    color: black;
    border: 2px solid black;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    line-height: 45px;
    letter-spacing: 4px;
}
.sign_up_button:hover{
    background: black;
    color: white;
    border: 2px solid black;
}
.sign_up_button:active {
    background: black;
    color: white;
    border: 2px solid black;
  }
  .sign_up_button:focus {
    outline-color: black;
  }
.sign_up_button:disabled{
    cursor: not-allowed;
    opacity: 0.5;
}

.google_fb_buttons{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
    min-height: 100px;
}

@media screen and (max-width: 768px) {
    .login_middle_flex{
        width: 100% !important;
    }
    
}

.form-errors{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.errorlist {
    color: red;
    font-size: 16px;
    margin: 0;
    padding: 0;
    text-align: center;
    list-style-type: none;
    max-width: 300px;
}