/* --- Authentication Page Styles --- */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f4f5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    margin: 0;
}

.auth-container {
    width: 100%;
    max-width: 420px;
    margin-top: 5vh;
}

.auth-logo {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #3b82f6;
    margin-bottom: 24px;
}
.auth-logo h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.auth-box {
    background: #ffffff00;
    border-radius: 12px;
    box-shadow: none;
    border: 3px solid #e5e7eb;
    padding: 32px 40px;
}

.auth-box h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #222;
    margin-top: 0;
    margin-bottom: 8px;
}

.auth-box p {
    text-align: center;
    color: #555;
    margin-bottom: 24px;
}

/* Form Styles */
.auth-form-group {
    margin-bottom: 16px;
}
.auth-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}
.auth-form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box; /* Important for 100% width */
}
.auth-form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px #3b82f630;
}

.auth-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #3b82f6;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.auth-btn:hover {
    background-color: #2563eb;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #aaa;
    margin: 20px 0;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}
.auth-divider span {
    padding: 0 12px;
    font-size: 0.9rem;
}

.auth-btn-google {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.auth-btn-google:hover {
    background-color: #f9f9f9;
    border-color: #ccc;
}
.auth-btn-google img {
    width: 20px;
    height: 20px;
}

.auth-toggle-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95rem;
    color: #555;
}
.auth-toggle-link a {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
}
.auth-toggle-link a:hover {
    text-decoration: underline;
}

.auth-error-message {
    color: #e53e3e;
    font-size: 0.9rem;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 12px;
    display: none; /* Hidden by default */
}




img.mainlgo {
    max-width: 195px;
}





