.login-container {
    width: 100%;
    height: 100vh;
    margin: auto;
    background: var(--bg-2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-wrapper {
    width: 450px;
    max-width: 95%;
    min-height: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-2);
    padding: 45px 35px 40px;
    box-sizing: border-box;
    border-radius: 5px;
    box-shadow: -4px -4px 7px #fffdfdb7, 3px 3px 5px rgba(94, 104, 121, 0.288);
    position: relative;
}
.login-img-wrapper {
    width: 10rem !important;
    height: 10rem !important;
    position: absolute;
    border-radius: 50%;
    background-color: var(--bg-2);
    transform: translate(-50%, -50%);
    top: 0;
    left: 50%;
    z-index: 99999;
    box-shadow: 0 0 2px #6b6a6a, 0 0 0 5px #ecf0f3, 5px 5px 15px #a7aaaf, -8px -8px 15px #ffffff;
}
.login-title {
    margin-top: 2rem;
    font-size: 30px;
    color: var(--text-2);
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.login-form {
    width: 100%;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/*-----------------*/
.login-input-wrapper {
    width: 100%;
    position: relative;

    margin-bottom: 2rem;
}
.login-input {
    width: 100%;
    height: 100%;
    font-size: 1.3rem;
    font-weight: 700;
    border: 2px solid var(--border-5);
    border-radius: 4px;
    outline: none;
    padding: 1rem;
    background: none;
    z-index: 1;
}
.login-label{
    position: absolute;
    transform: translateY(-30%);
    top: -.2rem;
    left: 1rem;
    padding: 0 .25rem;
    background-color: var(--bg-2);
    color: var(--text-4);
    font-size: 1.2rem;
    transition: .3s;
    font-weight: 600;
    z-index: 10;
}
.login-input:focus + .login-label{
    color: var(--primary);
    font-weight: 700;
}
.login-input:not(:placeholder-shown).login-input:focus + .login-label{
    color: var(--primary);
    font-weight: 700;
}
.login-input:focus{
    border: 2px solid var(--primary);
}
/*-----------------*/
.login-form-submit {
    width: 25rem;
    max-width: 100%;
    height: 4rem;
    margin: 1rem 0;
    padding: 1rem;
    background-color: var(--th-bg);
    color: var(--text-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gradient);
}
.login-form-submit:hover {
    background-color: var(--tr-bg-hover);
}
.login-form-submit span {
    font-size: 1.2rem;
    color: var(--text-light);
}
/*-----------------*/
.login-error {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 3px;
    color: var(--error);
}
/*-----------------*/
.login-terms-text,.login-terms-text a{
    margin-top: 2rem;
}
.login-terms-text,.login-terms-text a{
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-4);
}
.login-terms-text a{
    color: var(--primary);
}
.login-terms-text a:hover{
    color: var(--primary-hover);
}
.login-code-message{
    width: 100%;
    margin-top: 2rem;
    font-size: 1.4rem;
    color: #0cc901;
    font-weight: 700;
    text-align: start;
}
.login-code-label{
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-3);
    text-align: start;
}
.login-code-input{
    margin-top: 1rem;
}
.admin-sidebar-icon{
     width: 2rem;
     height: 2rem;
 }
.google-text{
    margin-right: 1rem;
    color: #0a0a0a;
}
