/* Sign-In Page Container */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc; /* secondary-50 */
    padding: 2rem 1rem;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Login Card */
.login-card {
    background: #ffffff;
    width: 100%;
    max-width: 440px;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.01);
    border: 1px solid #e2e8f0; /* secondary-200 */
}

/* Header & Logo */
.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    height: 48px;
    margin-bottom: 1.5rem;
}

.login-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a; /* secondary-900 */
    margin-bottom: 0.5rem;
}

.login-subtitle {
    font-size: 0.875rem;
    color: #64748b; /* secondary-500 */
}

/* Form Elements */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569; /* secondary-600 */
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #0f172a;
    background-color: #ffffff;
    border: 1px solid #cbd5e1; /* secondary-300 */
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb; /* primary-600 */
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-control::placeholder {
    color: #94a3b8;
}

/* Remember Me & Forgot Password Row */
.login-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: #2563eb;
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.875rem;
    color: #475569;
    cursor: pointer;
}

.forgot-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2563eb; /* primary-600 */
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-link:hover {
    color: #1d4ed8; /* primary-700 */
}

/* Submit Button */
.btn-login {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background-color: #2563eb; /* primary-600 */
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.btn-login:hover {
    background-color: #1d4ed8; /* primary-700 */
}

.btn-login:active {
    transform: translateY(1px);
}

/* Footer Link */
.login-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
}

.login-footer a {
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.login-footer a:hover {
    color: #1d4ed8;
}