
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Abhaya Libre', serif;
}
body {
    background-color: #fff;
    display: flex;
    justify-content: center;
    padding: 20px 50px;
  
    overflow-x: hidden; /* Prevent horizontal scrolling */
}
.content {
    width: 100%;
    max-width: 750px; /* Restrict max width */
    padding: 20px;
}
h2 {
    font-size: 22px;
    font-weight: 800;
}
h3 {
    font-size: 16px;
    font-weight: 800;
    color: #0067BB;
    margin-top: 10px;
}
ul {
    margin-top: 10px;
    margin-left: 20px;
}
ul li {
    font-size: 12px;
    font-weight: 800;
    line-height: 15.35px;
    color: #6C757D;
    margin-bottom: 5px;
}
.trusted-section {
   
    opacity: 0.8;
}


.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.trusted-logos img {
    width: 650px;
    opacity: 0.7;
}
.login-container {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin:25px auto;
}


.login-container img {
    width: 60px;
    margin: 0 10px;
}
.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;

}

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    background: #f7f7f7;
    border-radius: 3px;
    font-size: 16px;
}
 .radio-group {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        margin-top:20px;
        color: #6c757d;
    }
    .radio-group label {
        display: flex;
        align-items: baseline;
        gap: 5px;
    }
    .button-group {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 50px;
    }

.btn {
    width: 100%;
    padding: 12px;
    background: #0056b3;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}
.btn-alt {
    background: #ddd;
    color: #000;
}
.footer-links {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}
.footer-links a{
    text-decoration: none;
    color: #000;
}
.footer-links a:hover{
    text-decoration: none;
    color: #0056b3;
}
.login-container h3{
    
    color: black;
    font-size: 36px;
    font-weight: 800;
    margin-top: 35px;
    margin-bottom: 30px;
}
.trusted-section h3{
    
    color: #040404;
    font-size: 18px;
    font-weight: 800;
   
}
.trusted-section p{
   
   font-size: 12px;
   font-weight: 800;
   line-height: 15.35px;
   color: #5f6061;
   margin-bottom: 5px;
}
.input-container {
    display: flex;
    flex-direction: column; /* Stack input and link */
    align-items: flex-end; /* Align text to the left */
    width: 100%;
}

.forgot-password {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    margin-top: 5px; /* Space below input */
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media(min-width:1024px){
body{
    max-height: 100vh;
}
}
@media (max-width: 1024px) {
body {
    flex-direction: column-reverse; /* Reverse the order for mobile */
    padding: 20px;
    height:100%;
}
.content, .login-container {
    width: 100%;
    margin:auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top:20px;
}
.trusted-logos img {
    width: 100%; /* Make images scale */
    max-width: 450px;
}
.trusted-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 550px;
}
.trusted-section p{
    text-align: center;
  
}
}

@media (max-width: 768px) {
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 16px;
    }
    ul li {
        font-size: 12px;
        line-height: 14px;
    }
    .button-group {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .radio-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .login-container h3 {
        font-size: 28px;
    }
    .content {
        padding: 10px;
    }
    .trusted-logos img {
        max-width: 450px;
    }
}
