/* LOGIN PAGE */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #e6f0ff, #f8fafc);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrapper {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 35px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    text-align: center;
}

.login-logo img {
    width: 90px;
    margin-bottom: 15px;
}

.login-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.login-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
}

.form-group {
    text-align: left;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
    display: block;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
}

.login-btn {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    padding: 13px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.login-btn:hover {
    opacity: 0.95;
}

.login-footer {
    margin-top: 20px;
    font-size: 12px;
    color: #94a3b8;
}