/* auth.css */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Page background */
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #333;
}

/* Hero wrapper */
.hero {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Card */
.hero-content {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 400px;
    width: 100%;
    animation: fadeIn 0.8s ease-in-out;
}

/* Headings */
.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #444;
}

/* Form inputs */
form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
    transition: 0.3s;
}

form input:focus {
    border-color: #667eea;
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.6);
}

/* Buttons */
form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}

form button:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
}

/* Links */
.hero-content p {
    margin-top: 15px;
    font-size: 0.95rem;
}

.hero-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.hero-content a:hover {
    text-decoration: underline;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
