.wpp-login-body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background: #0f172a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpp-login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.wpp-login-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 40px 32px;
}

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

.wpp-login-icon {
    width: 48px;
    height: 48px;
    color: #6366f1;
    margin-bottom: 16px;
}

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

.wpp-login-message {
    background: #eef2ff;
    border-left: 4px solid #6366f1;
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.wpp-login-error {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
    color: #dc2626;
}

.wpp-login-form {
    margin-top: 24px;
}

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

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

.wpp-password-input {
    position: relative;
}

.wpp-form-control {
    width: 100%;
    padding: 12px 48px 12px 16px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.wpp-form-control:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.wpp-toggle-visibility {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #6b7280;
}

.wpp-toggle-visibility:hover {
    color: #374151;
}

.wpp-toggle-visibility svg {
    width: 20px;
    height: 20px;
}

.wpp-login-hint {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 20px;
    padding: 8px 12px;
    background: #f9fafb;
    border-radius: 4px;
}

.wpp-login-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wpp-login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.wpp-login-button:active {
    transform: translateY(0);
}

.wpp-login-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.wpp-login-footer {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #cbd5e1;
}

.wpp-login-footer a {
    color: #ffffff;
    text-decoration: none;
}

.wpp-login-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .wpp-login-card {
        padding: 32px 24px;
    }

    .wpp-login-header h1 {
        font-size: 20px;
    }
}
