body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.login_page{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.spanlogo{
    display: inline-block;

}

.spannav {
    display: inline-block;
    width: 94%;
}

.h1-head{
    font-size:x-large;
    font-weight: 1000;
    color: #05a03b;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: sticky;
}

nav ul li {
    position: relative; /* Ensure dropdown position relative to parent */
    display: inline-block;
    margin-right: 5px;
}

nav ul li a:hover,
nav ul li a.active {
    border-bottom-color: #04c247; /* Change bottom border color on hover and when active */
}

.login_page h1{
    text-align: center;
    padding: 0 0 20px 0;
    border-radius: 1px solid silver;
}

.login_page form{
    padding: 0 40px;
    box-sizing: border-box;
}

form .text_field{
    position: relative;
    border-bottom: 2px solid #adadad;
    margin: 30px 0;
}
.text_field input{
    width: 100%;
    padding: 0 5px;
    height: 40px;
    font-size: 16px;
    border: none;
    background: none;
    outline: none;
}

.text_field label{
    position: absolute;
    top: 50%;
    left: 5px;
    color: #adadad;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    transition: .5s;
}

.text_field span::before{
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #04c247;
    transition: .5s;
}

.text_field input:focus ~ label,
.text_field input:valid ~ label{
    top: -5px;
    color: #04c247;
}

.text_field input:focus ~ span::before,
.text_field input:valid ~ span::before{
    width: 100%;
}

.login_btn{
    width: 50%;
    height: 50px;
    border: 1px solid;
    background: #05762c;
    border-radius: 25px;
    font-size: 18px;
    color: #e9f4fb;
    font-weight: 700;
    cursor: pointer;
    outline: none;
}

.login_btn:hover{
    border-color: #05762c;
    transition: .5s;
} 
.forgot_pwd_btn{
    margin-bottom: 10px;
    width: 50%;
    height: 40px;
    border: 1px solid;
    background: #04c247;
    border-radius: 25px;
    font-size: 18px;
    color: #e9f4fb;
    font-weight: 600;
    cursor: pointer;
    outline: none;
}  
.forgot_pwd_btn:hover{
    border-color: #04c247;
    transition: .5s;
} 
.change_btn {
    width: auto;
    height: 25px;
    border: 1px solid;
    background: #05762c;
    border-radius: 25px;
    font-size: 13px;
    color: #e9f4fb;
    font-weight: bold;
    cursor: pointer;
    outline: none;
}

.text_field_reset{
    position: relative;
    border-bottom: 2px solid #adadad;
    margin: 30px 0;
}

.text_field_reset input{
    width: 100%;
    padding: 0 5px;
    height: 40px;
    font-size: 16px;
    border: none;
    background: none;
    outline: none;
}

.text_field_reset label{
    position: absolute;
    top: 50%;
    left: 5px;
    color: #adadad;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    transition: .5s;
}

.text_field_reset span::before{
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #04c247;
    transition: .5s;
} 
.text_field_reset input:focus ~ label,
.text_field_reset input:valid ~ label{
    top: -5px;
    color: #04c247;
}

.text_field_reset input:focus ~ span::before,
.text_field_reset input:valid ~ span::before{
    width: 100%;
}

/* inline styles */
.tsss_logo {
    width: 70px;
    height: 70px;
    padding-top: 10px; 
    padding: bottom 10px;
}

.center_f16_m15 {
    margin: 15px 0;
    text-align: center;
    font-size: 16px;
}

.line_green{
    text-decoration: underline;
    cursor: pointer;
    color: #05762c;
}
.line_blue{
    text-decoration: underline;
    cursor: pointer;
    color: #3308f2;
}

.red_f14 {
    color: red;
    font-size:14px;
}