:root {
    --bg-color: #f8fafc;
    --bg-footer: #1e1e1e;
    --text-color: #0f172a;
    --notification-bg: #eff6ff;
    --notification-border: #2563eb;
    --footer-bg: #0f172a;
    --footer-text: #94a3b8;

    --thead-bg: #253346;
    --table-bg-odd: #182232;
    --table-bg-even: #1d2a3d;
    --table-bg-hover: #55627b;
}

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

* {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

html {
    height: 100dvh;
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.form-container {
    margin: 40px;
    background: var(--container-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--text-color);
    border-radius: 24px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.form-container * {
    font-weight: 600;
}

.form-container p {
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    color: var(--text-color);
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--text-color);
    border-radius: 8px;
    padding: 10px 15px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: background 0.2s, box-shadow 0.2s;
    appearance: none;
    cursor: pointer;
    text-align: left;
}

.form-group select option {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.submit-button {
    width: 100%;
    background: var(--bg-color);
    color: var(--text-color);
    border: 1px solid var(--text-color);
    border-radius: 8px;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.submit-button:hover {
    opacity: 0.9;
    background: var(--text-color);
    color: var(--bg-color);
}