.access-container {
    max-width: 500px;
    margin: 80px auto;
    padding: 30px;
    text-align: center;
    background: #1a1a2e;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.access-icon {
    font-size: 80px;
    margin-bottom: 20px;
    color: #6c5ce7;
}

.access-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffffff;
}

.access-message {
    font-size: 16px;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.6;
}

.access-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-access {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login {
    background: #6c5ce7;
    color: white;
}

.btn-login:hover {
    background: #5649c9;
    transform: translateY(-2px);
}

.btn-register {
    border: 2px solid #6c5ce7;
    color: #6c5ce7;
}

.btn-register:hover {
    background: #000000;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .access-container {
        margin: 40px 20px;
        padding: 20px;
    }

    .access-buttons {
        flex-direction: column;
    }
}


/* canjeador de codigo */

.code-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #1a1a2e;
    border-radius: 10px;
    box-shadow: 0 4px 6px #1a1a2e;
    text-align: center;
}

.code-container h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.code-display,
.code-generator {
    margin-top: 1.5rem;
}

.code-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4eac6d;
    background-color: #2d2d42;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    letter-spacing: 2px;
    font-family: monospace;
}

.redeemed-status {
    font-size: 1rem;
    margin: 1rem 0;
}

.btn-generate,
.btn-copy {
    background-color: #4eac6d;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.btn-generate:hover,
.btn-copy:hover {
    background-color: #3d8a58;
}

.btn-generate:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.access-container {
    text-align: center;
    padding: 3rem;
    color: white;
}

.access-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.access-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.access-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.btn-access {
    display: inline-block;
    background-color: #7289da;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-access:hover {
    background-color: #5b6eae;
}

/* Estilos para el video tutorial */
.video-tutorial {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.video-tutorial h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.video-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.video-description {
    margin-top: 20px;
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.5;
}