/* style/login.css */
.page-login {
    color: #333333;
    background-color: var(--secondary-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-login__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px);
    background: linear-gradient(135deg, #26A9E0, #FFFFFF);
    color: #ffffff;
    overflow: hidden;
}

.page-login__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-login__hero-image {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.page-login__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-login__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
}

.page-login__hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-login__hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-login__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.page-login__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-login__btn-login {
    background: #EA7C07;
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-login__btn-login:hover {
    background: #D46B00;
    border-color: #D46B00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-login__btn-register {
    background: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-login__btn-register:hover {
    background: #1e87c0;
    border-color: #1e87c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-login__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-login__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-login__dark-section .page-login__section-title {
    color: #ffffff;
}

.page-login__section-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-login__dark-section .page-login__section-description {
    color: #f0f0f0;
}

.page-login__light-bg {
    background-color: #FFFFFF;
    color: #333333;
}

.page-login__dark-section {
    background-color: #26A9E0;
    color: #ffffff;
}

/* Login Form Section */
.page-login__form-section {
    padding: 60px 0;
}

.page-login__login-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-login__form-group {
    margin-bottom: 25px;
}

.page-login__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333333;
}

.page-login__form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

.page-login__form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.page-login__remember-me {
    display: flex;
    align-items: center;
}

.page-login__checkbox {
    margin-right: 8px;
}

.page-login__checkbox-label {
    color: #555555;
}

.page-login__forgot-password {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-login__forgot-password:hover {
    text-decoration: underline;
}

.page-login__submit-button {
    width: 100%;
    padding: 15px;
    background: #EA7C07;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-login__submit-button:hover {
    background: #D46B00;
}

.page-login__no-account {
    text-align: center;
    margin-top: 25px;
    font-size: 1em;
    color: #555555;
}

.page-login__register-link {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-login__register-link:hover {
    text-decoration: underline;
}

/* Benefits Section */
.page-login__benefits-section {
    padding: 80px 0;
}

.page-login__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-login__benefit-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-login__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-login__benefit-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 100%;
    display: block;
}

.page-login__benefit-item h3 {
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-login__benefit-item p {
    color: #f0f0f0;
    font-size: 1em;
}

/* Security Info Section */
.page-login__security-info {
    padding: 80px 0;
}

.page-login__security-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.page-login__security-list li {
    background: #f9f9f9;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #26A9E0;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-login__security-list li strong {
    color: #26A9E0;
}

/* Troubleshoot Section */
.page-login__troubleshoot-section {
    padding: 80px 0;
}

.page-login__troubleshoot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-login__troubleshoot-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-login__troubleshoot-item h3 {
    font-size: 1.4em;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-login__troubleshoot-item p {
    color: #f0f0f0;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-login__link {
    color: #f0f0f0;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-login__link:hover {
    color: #ffffff;
}

/* Responsible Gaming Section */
.page-login__responsible-gaming-section {
    padding: 80px 0;
}

.page-login__responsible-gaming-content {
    max-width: 800px;
    margin: 40px auto 0 auto;
    text-align: center;
    font-size: 1.1em;
    color: #333333;
}

.page-login__responsible-gaming-content p {
    margin-bottom: 30px;
}

.page-login__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    background: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-login__btn-secondary:hover {
    background: #26A9E0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Support Section */
.page-login__support-section {
    padding: 80px 0;
}

.page-login__support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-login__channel-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-login__channel-item img {
    
    
    margin-bottom: 20px;
    object-fit: contain;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-login__channel-item h3 {
    font-size: 1.4em;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-login__channel-item p {
    color: #f0f0f0;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-login__btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: #ffffff;
    color: #26A9E0;
    border: 2px solid #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-login__btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* CTA Bottom Section */
.page-login__cta-bottom-section {
    padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-login__hero-content h1 {
        font-size: 2.5em;
    }
    .page-login__hero-content p {
        font-size: 1.1em;
    }
    .page-login__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-login__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-login__hero-content h1 {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-login__hero-content p {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-login__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-login__cta-button,
    .page-login__btn-primary,
    .page-login__btn-secondary,
    .page-login a[class*="button"],
    .page-login a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-login__container {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-login__section-title {
        font-size: 1.8em;
    }
    .page-login__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-login__login-form {
        padding: 30px 20px;
    }
    .page-login__form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .page-login__benefit-item,
    .page-login__troubleshoot-item,
    .page-login__channel-item {
        padding: 25px;
    }
    .page-login img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-login__security-list li {
        font-size: 1em;
        padding: 15px;
    }
    .page-login__responsible-gaming-content {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-login__hero-content h1 {
        font-size: 1.6em;
    }
    .page-login__hero-content p {
        font-size: 0.9em;
    }
    .page-login__section-title {
        font-size: 1.5em;
    }
    .page-login__section-description {
        font-size: 0.9em;
    }
    .page-login__login-form {
        padding: 20px 15px;
    }
}