* {
    padding: 0%;
    margin: 0%;
    box-sizing: unset !important;
}

:root {
    --main-bg-color: #EEF0FD;
    --main-text-color: #1C1366;
    --form-bg-color: #fefefe;
    --label-txt-color: #585474;
}

.login-container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.trouble-sign-options{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}
.trouble-sign-options a {
    font-size: 1.1rem;
    color: gray;
}
.login-sub-div{
    width: 340px;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    background-color:var(--form-bg-color);
    border-radius: 10px;
    padding: 20px 20px;
    position: relative;
    z-index: 1;
    border-radius: 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.logo-class {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1c1366;
}
.input-img-mail {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 17.5%;
    left: 86%;
}
.input-img-pass {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 52%;
    left: 86%;
}
.login-sub-div h1 {
    font-size: 2rem;
    color: var(--main-text-color);
    padding: 0px 10px 20px 10px;
}
.login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 5px;
    padding: 0px 10px;
    width: 94%;
    margin-bottom: 20px;
    position: relative;
}

.login-form label{ 
    color: var(--label-txt-color);
    font-weight: 600
}
.login-form input{
    width: 96%;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 40px;
    padding: 0px 5px;
    font-size: 1rem;
}
.login-form input:focus, select {
    outline: none;
    border-color: var(--main-text-color);
}
.login-form input:hover {
    border-color: var(--main-text-color);
}
.login-form button {
    width: 100%;
    height: 45px;
    margin-top: 25px;
    background-color: var(--main-text-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    padding: 0px 5px;
    border-radius: 5px;
    letter-spacing: 0.1rem;
}
.login-form button:hover{
    background-color: black;
}
.forgot-div {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: gray;
    transition: 0.3s ease;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}
.forgot-div:hover{
    color:var(--main-text-color);
}
.login-back-div{
    width: 330px;
    position: absolute;
    z-index: 0;
    background-color: #F3F0F7;
    border-radius: 25px;
    height: 200px;
    top: 55%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.troubleshoot-options{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    margin-top: 15px;
    display: none;
}
.troubleshoot-options a {
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--label-txt-color);
}
.troubleshoot-options a:hover{
    color: var(--main-text-color);
}

@media screen and (max-width: 768px){
    .header_section{
        display: none;
    }
}

@media screen and (max-width: 600px){
    .header_section{
        display: none;
    }
}

@media screen and (max-width: 480px){
    .header_section{
        display: none;
    }
}