.page-login {
    padding-top: var(--header-offset, 120px);
    background-color: #FFFFFF;
    color: #333333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-login__hero-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background-color: #000000;
    color: #FFFFFF;
    overflow: hidden;
}

.page-login__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-login__main-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FCBC45;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-login__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-login__hero-image {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
}

.page-login__hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 15px;
}

.page-login__cta-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-login__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.page-login__cta-button--login {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-login__cta-button--login:hover {
    background-color: #e0a53a;
    transform: translateY(-3px);
}

.page-login__cta-button--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-login__cta-button--register:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.page-login__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-login__section--login-explanation {
    background-color: #f8f8f8;
}

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

.page-login__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-login__image-container {
    margin: 40px auto;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-login__image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-login__process-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-login__process-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.page-login__process-item:hover {
    transform: translateY(-5px);
}

.page-login__process-step-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.page-login__process-step-title::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: #FCBC45;
    color: #000000;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-login__process-list {
    counter-reset: step-counter;
}

.page-login__process-step-description {
    font-size: 1em;
    color: #555555;
    line-height: 1.7;
}

.page-login__section--security {
    background-color: #000000;
    color: #FFFFFF;
}

.page-login__section--security .page-login__section-title {
    color: #FCBC45;
}

.page-login__security-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-login__security-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease;
}

.page-login__security-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-login__security-tip-title {
    font-size: 1.4em;
    color: #FCBC45;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-login__security-tip-description {
    font-size: 1em;
    color: #f0f0f0;
    line-height: 1.7;
}

.page-login__section--faq {
    background-color: #f8f8f8;
}

.page-login__faq-list {
    margin-top: 30px;
}

.page-login__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.page-login__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    background-color: #fefefe;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.page-login__faq-question:hover {
    background-color: #f0f0f0;
}

.page-login__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #FCBC45;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-login__faq-item[open] .page-login__faq-toggle {
    transform: rotate(45deg);
}

.page-login__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: #555555;
    line-height: 1.7;
    border-top: 1px solid #f0f0f0;
}

.page-login__faq-answer p {
    margin: 0;
}

.page-login__faq-answer a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-login__faq-answer a:hover {
    text-decoration: underline;
}

.page-login__section--call-to-action {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
}

.page-login__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-login__cta-title {
    font-size: 2.8em;
    color: #FCBC45;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-login__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.8;
}

.page-login__cta-button--large {
    background-color: #FCBC45;
    color: #000000;
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 10px;
    border: 2px solid #FCBC45;
}

.page-login__cta-button--large:hover {
    background-color: #e0a53a;
    transform: translateY(-4px);
}

@media (max-width: 1024px) {
    .page-login__main-title {
        font-size: 2.5em;
    }
    .page-login__hero-description {
        font-size: 1.1em;
    }
    .page-login__section-title {
        font-size: 2em;
    }
    .page-login__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-login {
        padding-top: var(--header-offset, 80px);
    }
    .page-login__main-title {
        font-size: 2em;
    }
    .page-login__hero-description {
        font-size: 1em;
    }
    .page-login__hero-section {
        padding: 50px 15px;
    }
    .page-login__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-login__cta-button {
        width: 100%;
        max-width: 300px;
    }
    .page-login__section {
        padding: 40px 15px;
    }
    .page-login__section-title {
        font-size: 1.8em;
    }
    .page-login__process-step-title {
        font-size: 1.3em;
    }
    .page-login__security-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-login__security-tip-title {
        font-size: 1.2em;
    }
    .page-login__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-login__cta-title {
        font-size: 1.8em;
    }
    .page-login__cta-description {
        font-size: 1em;
    }
    .page-login__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
        width: 100%;
        max-width: 300px;
    }

    .page-login img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-login__main-title {
        font-size: 1.7em;
    }
    .page-login__section-title {
        font-size: 1.5em;
    }
    .page-login__cta-title {
        font-size: 1.6em;
    }
}