/* Authentication Pages Stylesheet - login.css */
/* Used by: login.php, register.php, forgot-password.php, reset-password.php */

body {
    background: #f5f6fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Card Containers */
.login-card,
.register-card,
.forgot-card,
.reset-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    padding: 40px;
    max-width: 450px;
    width: 100%;
}

.register-card {
    max-width: 500px;
}

/* Logo Section */
.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo img {
    max-height: 32px;
    height: auto;
    width: auto;
    margin-bottom: 10px;
}

.logo p {
    color: #666;
    margin: 0;
}

/* Form Controls */
.form-control:focus {
    border-color: #444b6b;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-check-input:checked {
    background-color: #444b6b;
    border-color: #444b6b;
}

/* Primary Button Styling */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, #1A8EF9 0%, #177BFF 100%);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    border-top: 1px solid rgba(150, 217, 255, 0.6);
    border-bottom: none;
    border-left: none;
    border-right: none;
    position: relative;
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(to bottom, #1980df 0%, #146ce1 100%);
    color: #fff !important;
    transform: translateY(-1px);
}

button#signInBtn {
    height: 55px;
}

/* Button Active States */
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    background-color: #444b6b !important;
    border-color: #444b6b !important;
    color: #FFF !important;
}

/* Links */
.register-link,
.login-link,
.forgot-link,
.back-link {
    text-align: center;
    margin-top: 15px;
    color: #666;
}

.register-link a,
.login-link a,
.forgot-link a,
.back-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.register-link a:hover,
.login-link a:hover,
.forgot-link a:hover,
.back-link a:hover {
    color: #616886;
    text-decoration: underline;
}

.back-link {
    margin-top: 20px;
}

/* Info and User Info Boxes */
.info-text,
.user-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.info-text {
    color: #666;
    font-size: 14px;
}

/* Alert Customizations */
.alert ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.alert-danger ul li,
.alert ul li {
    margin-bottom: 5px;
}

