.login-section {
    padding: 60px 0;
    background-color: #121928;
    background-image: radial-gradient(circle at 30% 50%, rgba(25, 35, 60, 0.8) 0%, rgba(18, 25, 40, 0.4) 100%);
}

.login-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
}

.login-header h1 {
    font-size: 2.5rem;
    color: #E3E20B;
    margin-bottom: 20px;
}

.login-buttons {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.login-button {
    display: inline-block;
    background-color: #E3E20B;
    color: #000;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 0;
    text-transform: uppercase;
    margin: 0 10px;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
    text-align: center;
}

.login-image {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.login-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.registration-steps {
    margin: 30px 0;
}

.registration-steps h2 {
    font-size: 2rem;
    color: #E3E20B;
    margin-bottom: 20px;
}

.registration-step {
    margin-bottom: 20px;
}

.registration-step-title {
    font-weight: bold;
    color: #E3E20B;
    margin-bottom: 5px;
    display: block;
}

.documents-section h2, .connect-section h2 {
    font-size: 2rem;
    color: #E3E20B;
    margin: 30px 0 20px;
}

.login-steps {
    margin-top: 15px;
}

.login-step {
    margin-bottom: 15px;
}

.casino-link {
    color: #E3E20B;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.casino-link:hover {
    color: #fff;
    text-decoration: underline;
}

.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .login-header h1 {
        font-size: 2rem;
    }
    
    .registration-steps h2, .documents-section h2, .connect-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .login-header h1 {
        font-size: 1.6rem;
    }
    
    .registration-steps h2, .documents-section h2, .connect-section h2 {
        font-size: 1.5rem;
    }
    
    .login-button {
        width: 80%;
        text-align: center;
        margin: 5px auto;
    }
    
    .login-buttons {
        flex-direction: column;
        align-items: center;
    }
} 