/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

body { 
    background: #f4f7fe; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    min-height: 100vh; 
    margin: 0;
    padding: 20px; 
    font-family: 'Inter', sans-serif; 
}
.login-container {
    width: 100%; 
    max-width: 420px;
    background: #fff; 
    padding: 40px 30px; 
    border-radius: 25px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.08); 
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.login-header p {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #4f46e5;
    outline: none;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: #00563b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background: #198754;
    color: #fff!important;
}

.error-msg {
    background: #fee2e2;
    color: #b91c1c;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 20px;
    text-align: center;
}

.footer-text {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #888;
}

.footer-text a {
    color: #198754;
    text-decoration: none;
}