@font-face {
    font-family: "Museo-300";
    src: url("fonts/Museo300-Regular-webfont.woff2") format("woff2"),
         url("fonts/Museo300-Regular-webfont.woff") format("woff"),
         url("fonts/Museo300-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('img/background.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Page Layout */
.PageLayout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Header */
.HeaderWrapper {
    text-align: center;
    margin-top: 24px;
    margin-bottom: 24px
}

.HeaderWrapper img {
    max-width: 120px;
    max-height: 120px;
    display: block;
    margin: 0 auto;
}

/* Login Section */
.login-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Login Card */
.login-card {
    max-width: 460px;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    width: 100%;
    /* text-align: center; */
    box-sizing: border-box;
}



.login-card h2 {
    margin-top: 0px;
    margin-bottom: 16px;
    font-weight: unset;
    letter-spacing: 0.1px;
    text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
    font-size: 36px;
    font-family: Museo-300, Georgia, "Times New Roman", Times, serif;
    color: rgb(34, 34, 34);
    line-height: 1.35;
}

/* Form Group */


.error-message {
    font-size: 16px;
    font-family: Lato-Book, Arial, Helvetica, sans-serif;
}

/* Password Visibility Toggle */
.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Help Link */
.help-link {
    margin-top: 8px;
    margin-bottom: 20px;
}

/* Login Button */
.login-button {
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: bold;
    letter-spacing: 0px;
    text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    line-height: 1.5;
    background-color: rgb(237, 26, 61);
    color: #fff;
    box-sizing: border-box;
    cursor: pointer;
    height: auto;
    outline: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px solid transparent;
    min-width: 128px;
    min-height: 40px;
    border-radius: 16px;
    padding: 8px 24px;
    margin: 0px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.1s ease-in;
    width: 100%;
}

.login-button:hover {
    background-color: #bf0812;
}

/* FOOTER */
.bNLnVM {
    padding-top: 120px;
    padding-bottom: 40px;
}
.fnQhN {
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: unset;
    letter-spacing: 0.1px;
    text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    color: rgb(34, 34, 34);
    line-height: 1.75;
}
.Footer__FooterLink-sc-12litk-1 + .Footer__FooterLink-sc-12litk-1::before {
    content: " ";
    display: inline-block;
    width: 1px;
    height: 16px;
    margin: -3px 16px;
    background: rgb(34, 34, 34);
}
.kKWqvC {
    text-decoration: none;
}

/* Captcha Section */
.captcha-container {
    margin-top: 20px;
    text-align: center;
}

.captcha-container p {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}

.captcha-container a {
    color: #3B2A72;
    text-decoration: none;
}

.captcha-container a:hover {
    text-decoration: underline;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .login-card {
        width: 90%;
    }

    .HeaderWrapper img {
        max-width: 100px;
    }
}
/* Responsive Styles for 1240px and above */
@media (min-width: 1240px) {
    
}

/* Responsive Styles for 720px and below */
@media (max-width: 720px) {
    .login-card {
        width: 90%;
        padding: 30px;
    }

    body {
        background-size: contain cover;
    }
}

/* Responsive Styles for 600px and below */
@media (max-width: 600px) {
    body {
        background: none;
    }

    .login-card {
        width: 100%;
        margin: 0 auto;
        padding: 20px;
    }
}

/* Responsive Styles for 375px and below */
@media (max-width: 375px) {
    .login-card {
        padding: 15px;
        font-size: 10px;
        align-items: center;
    }
    .login-card h2 {
        font-size: 30px;
    }

    .login-button {
        min-width: 100px;
        padding: 6px 16px;
    }
}
