/* D:\Sports-Booking-System\static\css\login.css */

body {
    font-family: 'Roboto', sans-serif;
    /* Changed to light gray background to match white/light dashboard theme */
    background-color: #f8f9fa; /* Light Gray */
    color: #343a40; /* Dark text */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    /* Green branding color */
    color: #198754; 
    text-shadow: 0 0 10px rgba(25, 135, 84, 0.4); 
    letter-spacing: 2px;
}

.login-container {
    /* Solid white card for main content area */
    background: #ffffff;
    border-radius: 15px; 
    border: 1px solid #dee2e6;
    padding: 50px 45px;
    max-width: 480px;
    width: 95%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-control {
    /* Standard light input style */
    background: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 10px; 
    height: 55px; 
    color: #343a40; 
    font-size: 1rem;
    padding-left: 20px;
    transition: all 0.3s;
}

.form-control::placeholder {
    color: #6c757d;
    font-weight: 400;
}

.form-control:focus {
    background: #ffffff;
    /* Green focus ring */
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); 
    color: #343a40;
    border-color: #198754;
}

.btn-login {
    background: #198754; /* Green CTA */
    border: none;
    border-radius: 50px;
    padding: 14px; 
    font-size: 1.2rem;
    font-weight: bold;
    width: 100%;
    color: white; 
    transition: all 0.3s;
}

.btn-login:hover {
    background: #157347;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.register-link, .forgot-link {
    color: #198754; /* Green link color */
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.register-link:hover, .forgot-link:hover {
    color: #157347;
    text-decoration: underline;
}

.info-text {
    /* Light background for info text */
    background: #e9ecef;
    color: #495057;
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    line-height: 1.4;
    border: 1px solid #dee2e6;
}

/* Social Login Buttons */
.btn-social {
    border-radius: 10px; 
    padding: 12px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-google {
    background-color: #db4437; 
    color: white;
}
.btn-apple {
    background-color: #000000; 
    color: white;
}

.social-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    color: #6c757d; 
}

.social-divider::before,
.social-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ced4da; 
}

.social-divider:not(:empty)::before {
    margin-right: .5em;
}

.social-divider:not(:empty)::after {
    margin-left: .5em;
}