:root {
    --primary-blue: #4285F4;
    --hover-blue: #296bd5;
    --glass-bg: rgba(255, 255, 255, 1);
    --text-dark: #333;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background: var(--glass-bg);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px); /* Stronger blur */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Thin light border */
    max-width: 90%;
    width: 450px;
}

h1 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

p {
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
}
.button-group {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Space between buttons */
}

/* Applying your specific style here */
.btn {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    padding: 14px 16px;
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.btn:hover {
    background-color: #f0f7ff;
    border-color: var(--primary-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    color: var(--primary-blue); /* Optional: changes text color to blue on hover */
}
footer {
    margin-top: 4rem;
}

footer p {
    font-size: 0.7rem;
    color: #ccc;
    letter-spacing: 1px;
}