@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;700&display=swap");

body {
    background:
        radial-gradient(circle at top left, rgba(61, 217, 193, 0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 180, 77, 0.16), transparent 28%),
        linear-gradient(160deg, #07111d 0%, #0e1a2b 52%, #08111f 100%);
    color: #d6e1ef;
    font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-form {
    background: rgba(8, 17, 31, 0.84);
    border: 1px solid rgba(135, 168, 208, 0.18);
    backdrop-filter: blur(18px);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo {
    width: min(280px, 78%);
    height: auto;
    margin-bottom: 0.5rem;
}

h2 {
    margin-bottom: 0.25rem;
    font-size: 1.8rem;
}

.login-subtitle {
    margin: 0 0 1.75rem;
    color: #92a6bf;
    font-size: 0.98rem;
}

.google-login-button {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(135, 168, 208, 0.22);
    background: rgba(255, 255, 255, 0.96);
    color: #102033;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.google-login-status {
    min-height: 1.1rem;
    margin: 0 0 1rem;
    color: #98adc7;
    font-size: 0.9rem;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0 1.4rem;
    color: #92a6bf;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.login-divider::before,
.login-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(135, 168, 208, 0.18);
}

.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #98adc7;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.input-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(135, 168, 208, 0.2);
    border-radius: 0.9rem;
    background-color: rgba(6, 14, 24, 0.9);
    color: #f4f7fb;
    font-size: 1rem;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #3dd9c1 0%, #18a0fb 62%, #ffb44d 100%);
    color: #07111d;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(24, 160, 251, 0.24);
}

.error {
    color: #ff8f7a;
    margin-top: 1rem;
}
