/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Full-page Styling */
body {
    min-height: 100vh;
    background: linear-gradient(to bottom right, #1e293b, #334155);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Centering Authentication Pages */
.auth-container {
    width: 100%;
    max-width: 400px;
}

/* Authentication Card */
.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* Form Styling */
.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.form-input {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    outline: none;
    font-size: 16px;
}

.form-input:focus {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Button Styling */
.btn {
    width: 100%;
    padding: 12px;
    background: #f59e0b;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
}

.btn:hover {
    background: #d97706;
}

/* Links */
p {
    margin-top: 12px;
    font-size: 14px;
}

a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
