/* AUTH PAGES STYLE */
body {
    background-color: #0f172a; /* Same Dark Blue */
    color: white;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.auth-container {
    background: #1e293b;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    width: 100%;
    max-width: 400px;
    border: 1px solid #334155;
    text-align: center;
}

.auth-container h2 {
    color: #38bdf8;
    margin-bottom: 25px;
}

.auth-container input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    color: white;
    outline: none;
}

.auth-container input:focus {
    border-color: #38bdf8;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background: #0284c7;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.auth-btn:hover {
    background: #38bdf8;
}

.auth-container p {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.auth-container a {
    color: #38bdf8;
    text-decoration: none;
}