﻿body {
    margin: 0;
    padding: 0;
}

.auth-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #688eb3 0%, #2F4050 100%);
}

.auth-wrapper {
    width: 100%;
    max-width: 480px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header img {
    max-height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.auth-header h2 {
    color: #ffffff;
    font-weight: 600;
    font-size: 28px;
    margin: 0;
}

.auth-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 40px;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.auth-footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Override form control styles for login page */
.auth-card .form-control,
.auth-card .form-select {
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.auth-card .form-control:focus,
.auth-card .form-select:focus {
    border-color: #1ab394;
    box-shadow: 0 0 0 3px rgba(26, 179, 148, 0.1);
}

.auth-card .btn-primary {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    background-color: rgb(41, 135, 117);
}

.auth-card .form-label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.auth-card .form-check-label {
    color: #6b7280;
}

a {
    text-decoration: unset
}