* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg,
        #0f0c29 0%,
        #302b63 25%,
        #24243e 50%,
        #ff6b35 75%,
        #f7931e 90%,
        #ffcc00 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 204, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.left-section {
    flex: 1;
    max-width: 500px;
    color: #fff;
    text-align: left;
}

.hero-image {
    margin-bottom: 24px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(255, 107, 53, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

.logo {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.8), 0 0 60px rgba(255, 204, 0, 0.5);
}

.logo span {
    display: block;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(90deg, #ff6b35, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 18px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 2px;
}

.event-info {
    margin-top: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.date {
    font-size: 24px;
    font-weight: 700;
    color: #ffcc00;
    letter-spacing: 2px;
}

.location {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

.right-section {
    width: 420px;
}

.login-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 60px rgba(255, 107, 53, 0.2);
    padding: 40px;
    text-align: center;
}

.facebook-logo {
    margin-bottom: 16px;
}

.login-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 32px;
}

.input-field {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.input-field:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.input-field::placeholder {
    color: #999;
}

.login-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.forgot-password {
    display: inline-block;
    margin-top: 20px;
    font-size: 14px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.forgot-password:hover {
    text-decoration: underline;
}

.divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    padding: 0 16px;
    color: #999;
    font-size: 14px;
}

.create-account-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid #1a1a2e;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.create-account-btn:hover {
    background: #1a1a2e;
    color: #fff;
}

/* Confirmation page styles */
.confirmation-box {
    text-align: center;
}

.checkmark {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.confirmation-details {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

.detail-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.confirmation-box .login-btn {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.social-login {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn.google {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.social-btn.google:hover {
    background: #f5f5f5;
}

.social-btn.facebook {
    background: #1877f2;
    color: #fff;
}

.social-btn.facebook:hover {
    background: #166fe5;
}

footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffcc00;
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        gap: 40px;
        padding-top: 40px;
    }

    .left-section {
        text-align: center;
    }

    .hero-image {
        margin-bottom: 20px;
        border-radius: 16px;
    }

    .logo {
        font-size: 48px;
    }

    .logo span {
        font-size: 36px;
    }

    .right-section {
        width: 100%;
        max-width: 420px;
    }

    .login-box {
        padding: 30px 24px;
    }
}
