/* --- General Page Layout --- */
body {
    background-image: url('https://ik.imagekit.io/mgxkiospx3/assets/hero3.webp?tr=w-1600,f-webp,q-80');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* --- Authentication Box --- */
.auth-box {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid #444;
    border-radius: 12px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    max-width: 450px;
    width: 100%;
}

.auth-box h2 {
    text-align: center;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* --- Form Styling --- */
.auth-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    background-color: #333;
    border: 1px solid #555;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #00aaff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0088cc;
}

/* --- Links and Helper Text --- */
.auth-form p {
    text-align: center;
    margin-top: 1.5rem;
    color: #ccc;
}

.auth-form a {
    color: #00aaff;
    text-decoration: none;
}

.auth-form a:hover {
    text-decoration: underline;
}

.form-options {
    text-align: right;
    margin: -0.5rem 0 1rem 0;
}

.form-options a {
    color: #ccc;
    font-size: 0.9rem;
}

/* --- Feedback Messages --- */
.message {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.error-message {
    background-color: rgba(220, 38, 38, 0.2);
    color: #f87171;
    border: 1px solid #ef4444;
}

.success-message {
    background-color: rgba(22, 163, 74, 0.2);
    color: #4ade80;
    border: 1px solid #22c55e;
}