body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%); /* Gradient background instead of GIF */
    height: 600px;
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

nav .logo img {
    height: 100px;
    position: relative;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #facc15;
}

nav .auth-buttons button {
    background: #222;
    border: none;
    color: #fff;
    padding: 8px 16px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

nav .auth-buttons button:hover {
    background: #facc15;
}

.hero {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero h1 {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin: 10px 0;
    font-weight: 300;
}

/* Login Section */
.login-section {
    padding: 100px 20px; /* Increased padding for a more spacious feel */
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%); /* Gradient background */
    position: relative;
    overflow: hidden;
}

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(250, 204, 21, 0.1), transparent 70%); /* Subtle gold glow */
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.login-section h2 {
    font-size: 3rem; /* Larger for a premium look */
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
    background: linear-gradient(45deg, #facc15, #fde047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Added shadow for depth */
}

.subtitle {
    font-size: 1.2rem; /* Slightly larger for readability */
    font-weight: 300;
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 2.5rem; /* Increased padding for elegance */
    background: rgba(255, 255, 255, 0.05); /* Glassmorphism effect */
    border-radius: 16px;
    backdrop-filter: blur(10px); /* Enhanced glassmorphism */
    border: 1px solid rgba(250, 204, 21, 0.3); /* Gold accent */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5); /* Deeper shadow for luxury */
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-form:hover {
    transform: translateY(-5px); /* More pronounced lift effect */
    box-shadow: 0 12px 40px rgba(250, 204, 21, 0.3); /* Stronger gold glow */
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.form-group input {
    max-width: 400px; /* Constrain width for centering */
    width: 100%; /* Full width up to max-width */
    margin: 0 auto; /* Center horizontally */
    display: block; /* Ensure block-level for margin centering */
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #fde047;
    background: rgba(255, 255, 255, 0.15);
}

.login-button {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(45deg, #facc15, #fde047);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.login-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #fde047, #facc15);
}

.form-link {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #b0b0b0;
}

.form-link a {
    color: #facc15;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.form-link a:hover {
    color: #fde047;
    transform: translateY(-2px);
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #f87171;
}

.error-message p {
    margin: 0;
    font-size: 0.95rem;
}

.success-message {
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #fde047;
    text-align: center;
    font-size: 1rem;
}

footer {
    padding: 50px 20px;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%); /* Gradient background */
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(250, 204, 21, 0.1), transparent 70%); /* Subtle gold glow */
    z-index: 0;
}

footer > * {
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a img {
    height: 30px;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-links div {
    display: flex;
    flex-direction: column;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #facc15;
}

nav ul li a:visited {
    color: #fff;
}

.support-section {
    padding: 40px 0;
    text-align: center;
}
.highlight {
    font-size: 1.2em;
    font-weight: bold;
    color: #007bff;
    margin: 20px 0;
}
.support-content {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}
.support-content ul {
    list-style: disc;
    padding-left: 20px;
}