/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #6a11cb, #2575fc, #ff6a00);
    background-size: 300% 300%;
    animation: gradientMove 10s ease infinite;
}

/* Animated background */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 50px 70px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.quote {
    font-size: 1.2rem;
    color: #f1f1f1;
    margin-bottom: 40px;
    font-style: italic;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.login {
    background: #ffffff;
    color: #2575fc;
}

.signup {
    background: #ff6a00;
    color: white;
}

.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
