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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at top, #1d2433 0%, #0b1020 46%, #070b16 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #f2f6ff;
}

.container {
    text-align: center;
    background: rgba(15, 21, 38, 0.92);
    padding: 48px 40px;
    border-radius: 16px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(125, 146, 196, 0.25);
    max-width: 580px;
    width: 100%;
}

h1 {
    font-size: 2.4em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #f2f6ff;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1em;
    color: #9aa7c9;
    margin-bottom: 36px;
}

.buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

button {
    padding: 14px 28px;
    font-size: 1em;
    font-family: 'Inter', sans-serif;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.15s ease, box-shadow 0.15s ease;
    border: 1px solid rgba(125, 146, 196, 0.35);
    background: rgba(22, 31, 53, 0.9);
    color: #dce6ff;
}

button:hover {
    background: rgba(30, 42, 70, 0.95);
    box-shadow: 0 0 0 3px rgba(125, 146, 196, 0.15);
}

.superadmin-btn {
    background: #7c3aed;
    border-color: rgba(124, 58, 237, 0.6);
    color: #fff;
}

.superadmin-btn:hover {
    background: #6d28d9;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.25);
}
