html, body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../../img/login_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.login-container {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 100%; /* Ensures it does not stretch too much */
    margin: 0 0 0 -5%;
}
.login-container h3{
    color: #375249;
    font-family: Poppins;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.illustration {
    position: fixed;
    left: 17.5%;
    max-width: 200px;
}
.logo{
    color: #3F5950;
    font-family: Poppins, sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    text-align: center; /* Center the logo */
    margin: 3rem 0 2.5rem 0; /* Add space below */
    padding-left: 2rem;
}
.forgot-password{
    color: #44D19D;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}
.form-label{
    color: #3F5950;
    font-family: Poppins;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.form-control {
    border-radius: 22px;
    background: #F6F6F6;
}
.btn-login {
    border-radius: 22px;
    background: #ABFADD;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.20);
    width: 100%;
    padding: 9px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #3F5950;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.btn-login:hover {
    background: #57c094;
}
.footer-links {
    margin-top: 1.5rem;
    font-size: 14px;
}
.footer {
    width: 100%;
    text-align: center;
    margin: 4rem 0rem 0rem 0rem;
}

.footer a{
    color: rgba(55, 82, 73, 0.80);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px; /* Add spacing between links */
}
.footer p{
    padding-left: 2.2rem;
}
.footer-links a{
    color: #44D19D;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}

.footer-links p{
    color: #333;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.login-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    float: inline-end;
    z-index: 10;
    position: relative;
}
.login-image2{
    top: -5rem;
    position: relative;
    left: 15%;
}
/* Responsive adjustments */
@media (min-width: 300px) and (max-width: 991.98px) {
    .login-image {
        display: none; /* Hide images on small screens */
    }
    .logo{
        padding-left: 0px;
    }
    .footer p{
        padding-left: 0px;
    }
    .login-image2{
        display: none;
    }
    .login-container{
        margin: 0px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .login-container {
        margin: 0 0 0 -6.5%;
    }
    .login-image2{
        top: -3rem;
        position: relative;
        left: 5%;
    }
}

span.error {
    color: red;
    font-size: 11px;
}

span.requiredSpan {
    color: red;
}
.errorList.col-12 {
    color: red;
    font-size: 12px;
}
ul#errors {
    list-style-type: disc;
    text-align: left;
}
#toast {
	z-index: 3000;
	right: 0;
    top: 0;
}
#toast > .toast {
	background-color: #fff;
	font-size: 1rem;
	width: 350px;
}