body {
    margin: 0;
    background: #eef4fb;
    font-family: 'Segoe UI',sans-serif;
}

.login-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    width: 420px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.logo-area {
    text-align: center;
    margin-bottom: 35px;
}

.logo-circle {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.logo-area h2 {
    font-weight: 700;
    margin-bottom: 5px;
}

.logo-area p {
    color: #64748b;
}

.form-control {
    height: 48px;
    border-radius: 12px;
}

.login-btn {
    height: 48px;
    border-radius: 12px;
    font-weight: 600;
}

.login-footer {
    margin-top: 30px;
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
}
.login-logo {
    display: block;
    max-width: 240px;
    width: 180%;
    height: auto;
    margin: 0 auto 20px auto;
}