/* Easy Registration Modal - Quiet Luxury Aesthetic */
.easy-reg-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.easy-reg-modal.show {
    display: flex;
    opacity: 1;
}

.easy-reg-content {
    background: #071b2a;
    width: 90%;
    max-width: 450px;
    padding: 40px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.easy-reg-modal.show .easy-reg-content {
    transform: translateY(0);
}

.easy-reg-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.easy-reg-close:hover {
    color: #fff;
}

.easy-reg-header h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.easy-reg-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 30px;
}

.easy-reg-accent {
    color: #d4af37; /* Champagne Gold */
    font-weight: bold;
}

.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-google {
    background: #fff;
    color: #333;
}

.btn-google:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
}

.btn-google img {
    width: 20px;
    margin-right: 12px;
}

.btn-email {
    background: transparent;
    border: 1.5px solid #d4af37;
    color: #d4af37;
}

.btn-email:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.email-form-step {
    display: none;
}

.email-form-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

.reg-input {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    margin-bottom: 15px;
    outline: none;
}

.reg-input:focus {
    border-color: #d4af37;
}

.btn-submit {
    background: #d4af37;
    color: #071b2a;
}

.btn-submit:hover {
    background: #c19b2e;
    transform: translateY(-2px);
}

.back-to-options {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
