*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Figtree', 'Segoe UI', sans-serif; min-height: 100vh; }

.login-wrapper {
    display: flex;
    min-height: 100vh;
}

.login-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 40px;
    background: #fff;
}

.login-right {
    width: 50%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.login-content {
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.login-logo {
    height: 48px;
    margin-bottom: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.login-mascot {
    height: 120px;
    margin-bottom: 32px;
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2740;
    margin-bottom: 12px;
}

.login-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 40px;
}

.login-error {
    background: #fef2f2;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 24px;
    border: 1px solid #fecaca;
}

.login-ms-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #2f30bb 0%, #3435c8 50%, #453cd6 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.login-ms-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(47, 48, 187, 0.35);
}

.login-ms-btn:active {
    transform: translateY(0);
}

.login-ms-btn svg {
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .login-right { display: none; }
    .login-left { width: 100%; }
}
