/* Login Page Specific Styles */

/* Security Warning Styles */
.security-warning {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
    border: 2px solid #dc3545;
    border-radius: 12px;
    margin: 20px 0;
}

.warning-icon {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 20px;
}

.warning-title {
    color: #dc3545;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.warning-message {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.ip-display, .threat-reasons {
    background: rgba(220, 53, 69, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    margin: 10px 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.contact-info {
    margin-top: 20px;
    color: var(--text);
}

.contact-info a {
    color: var(--color-accent-cyan);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Force body to have no margins/padding and proper layout */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    height: 100vh !important;
    width: 100vw !important;
    overflow: hidden !important; /* Prevent any scrollbars */
}

/* Body layout - header takes fixed height, main takes remaining space */
body {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden !important; /* Prevent any scrollbars */
}

/* Hide elements not needed on login page */
body .top-banner,
body .scroll-progress {
    display: none !important;
}

/* Ensure no gap between header and main content */
body .main-header + main,
body .main-header + .login-main,
main#main-content,
.login-main,
main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Override main header position since no banner */
body .main-header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: 10000 !important;
    transform: none !important;
    transition: none !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
}

/* Ensure navigation buttons are visible and working */
.main-header .nav-actions .theme-toggle,
.main-header .nav-actions .nav-account {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

/* Force navigation buttons to be visible */
#themeToggle,
.nav-account {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Ensure theme toggle button is clickable */
#themeToggle {
    z-index: 9999 !important;
    position: relative !important;
}

/* Force theme toggle icon to be visible */
#themeToggle i {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Main content area - takes remaining space */
.login-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: var(--bg);
    min-height: 0; /* Allow flex item to shrink */
    /* Account for both header and footer heights */
    max-height: calc(100vh - var(--header-height) - 60px); /* 60px estimated footer height */
    height: calc(100vh - var(--header-height) - 60px); /* Fixed height to prevent overflow */
}

/* Apply hero background to login main */
.login-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 64, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 64, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0;
    animation: gridFloat 15s ease-in-out infinite;
    z-index: 1;
}

/* Moving Lighting Effects */
.login-main::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(1000px circle at 30% 40%, rgba(0, 64, 255, 0.18) 0%, transparent 50%),
        radial-gradient(1200px circle at 70% 60%, rgba(0, 204, 253, 0.15) 0%, transparent 60%),
        radial-gradient(700px circle at 50% 30%, rgba(0, 12, 138, 0.16) 0%, transparent 55%);
    animation: smoothSpotlightFloat 20s ease-in-out infinite;
    z-index: 2;
}

/* Discrete Scan Line Effect - Using a separate element */
.login-main {
    position: relative;
}

.login-main .scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 48%,
        rgba(0, 204, 253, 0.15) 49%,
        rgba(0, 64, 255, 0.25) 50%,
        rgba(0, 204, 253, 0.15) 51%,
        transparent 52%,
        transparent 100%
    );
    animation: scanLine 12s linear infinite;
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: screen;
    box-shadow: 
        0 0 10px rgba(0, 204, 253, 0.3),
        0 0 20px rgba(0, 64, 255, 0.2);
}

/* Footer positioning - stick to bottom */
.main-footer {
    flex-shrink: 0 !important;
    margin-top: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    display: block !important; /* Ensure footer is visible */
    visibility: visible !important;
    opacity: 1 !important;
}

/* Remove footer padding and borders on login and password pages */
.page-login .main-footer,
.page-password .main-footer {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-top: none !important;
    border-bottom: none !important;
}

/* Hide footer separator on login/password pages */
.page-login .main-footer .footer-sep,
.page-password .main-footer .footer-sep {
    display: none !important;
}

/* Adjust footer container padding on login/password pages */
.page-login .main-footer .container,
.page-password .main-footer .container {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    border-top: none !important;
    border-bottom: none !important;
}

/* Login container */
.login-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 480px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0; /* Allow container to shrink */
    max-height: 100%; /* Prevent overflow */
}

/* Login card - fits within available space */
.login-card {
    background: var(--nav-bg);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.25), 
        0 0 0 1px rgba(0, 64, 255, 0.08) inset;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 480px;
    max-height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 0; /* Allow card to shrink */
    /* Dynamic sizing based on available space */
    min-height: 400px; /* Minimum usable height */
    max-height: calc(100vh - var(--header-height) - 40px); /* Account for header and padding */
}

.login-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 64, 255, 0.6), rgba(0, 12, 138, 0.4));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: 1;
}

/* Login header - Dynamic sizing */
.login-header-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

.login-logo {
    margin-bottom: 16px;
}

.login-logo .brand-logo {
    height: 40px;
    width: auto;
}

.login-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text);
}

.login-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
}

/* Login tabs */
.login-tabs {
    display: flex;
    justify-content: space-around;
    background: rgba(0, 64, 255, 0.05);
    border-radius: 12px;
    padding: 6px;
    position: relative;
    z-index: 3;
}

.login-tab {
    flex: 1;
    padding: 12px 10px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-tab.active {
    background: var(--nav-bg);
    color: var(--color-accent-cyan);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 0 0 1px var(--border-glow);
}

.login-tab:hover:not(.active) {
    color: var(--color-lightest-blue);
}

.login-tab i {
    font-size: 1.1rem;
}

/* Login forms */
.login-forms {
    position: relative;
    z-index: 3;
}

.login-form {
    display: none;
    flex-direction: column;
    gap: 20px;
    animation: fadeIn 0.3s ease-out;
}

.login-form.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Form styles */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    z-index: 4;
}

.password-toggle {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 4;
    padding: 0;
}

.password-toggle:hover {
    color: var(--color-accent-cyan);
}

.form-input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    background: rgba(0, 64, 255, 0.03);
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--color-accent-cyan);
    box-shadow: 
        0 0 0 3px rgba(0, 64, 255, 0.1),
        0 4px 12px rgba(0, 64, 255, 0.15);
    background: rgba(0, 64, 255, 0.08);
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

/* Form help text */
.form-help {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    opacity: 0.8;
}

/* Form options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text);
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-glow);
    border-radius: 4px;
    background: rgba(0, 64, 255, 0.05);
    position: relative;
    transition: all 200ms ease;
}

.checkbox-input:checked + .checkbox-custom {
    background: var(--color-accent-cyan);
    border-color: var(--color-accent-cyan);
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    user-select: none;
}

/* Links */
.forgot-link {
    color: var(--color-accent-cyan);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 200ms ease;
}

.forgot-link:hover {
    color: var(--color-lightest-blue);
    text-decoration: underline;
}

/* Button styles removed - now using standard .btn classes from shell.css */

/* FIDO2 specific styles */
.fido2-info, .web3-info {
    text-align: center;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(0, 64, 255, 0.05);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
}

.fido2-info .info-icon, .web3-info .info-icon {
    font-size: 2.5rem;
    color: var(--color-accent-cyan);
    margin-bottom: 12px;
}

.fido2-info h3, .web3-info h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin: 0 0 8px 0;
}

.fido2-info p, .web3-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.fido2-help, .web3-help {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 20px;
    text-align: center;
}

.fido2-help i, .web3-help i {
    margin-right: 6px;
    color: var(--color-lightest-blue);
}

/* Web3 specific styles */
.wallet-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.wallet-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    background: rgba(0, 64, 255, 0.03);
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wallet-logo {
    height: 30px;
    width: auto;
    margin-bottom: 8px;
}

/* Login footer */
.login-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-glow);
    position: relative;
    z-index: 3;
}

.login-footer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.register-link,
.login-link {
    color: var(--color-accent-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: color 200ms ease;
}

.register-link:hover,
.login-link:hover {
    color: var(--color-lightest-blue);
    text-decoration: underline;
}

/* Light theme adjustments matching site */
[data-theme="light"] .login-main::before {
    background-image:
        linear-gradient(rgba(0, 11, 129, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 11, 129, 0.06) 1px, transparent 1px);
}

[data-theme="light"] .login-main::after {
    background:
        radial-gradient(1000px circle at 30% 40%, rgba(0, 11, 129, 0.12) 0%, transparent 50%),
        radial-gradient(1200px circle at 70% 60%, rgba(0, 64, 255, 0.10) 0%, transparent 60%),
        radial-gradient(700px circle at 50% 30%, rgba(0, 204, 253, 0.08) 0%, transparent 55%);
    animation: smoothSpotlightFloat 20s ease-in-out infinite;
}

[data-theme="light"] .login-card {
    background: var(--nav-bg);
    box-shadow:
        0 20px 60px rgba(0, 11, 129, 0.08),
        0 0 0 1px rgba(0, 11, 129, 0.06) inset;
}

[data-theme="light"] .login-card::before {
    background: linear-gradient(135deg, rgba(0, 64, 255, 0.5), rgba(0, 11, 129, 0.25));
}

[data-theme="light"] .login-tabs {
    background: rgba(0, 11, 129, 0.03);
}

[data-theme="light"] .login-tab.active {
    background: var(--nav-bg);
}

[data-theme="light"] .form-input {
    background: rgba(0, 11, 129, 0.02);
    border-color: rgba(0, 11, 129, 0.1);
}

[data-theme="light"] .form-input:focus {
    border-color: var(--color-accent-cyan);
    background: rgba(0, 11, 129, 0.04);
}

[data-theme="light"] .checkbox-custom {
    background: rgba(0, 11, 129, 0.02);
    border-color: rgba(0, 11, 129, 0.1);
}

[data-theme="light"] .login-footer {
    border-top-color: rgba(0, 11, 129, 0.1);
}

/* Light theme scan line adjustments */
[data-theme="light"] .login-main .scan-line {
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 48%,
        rgba(0, 11, 129, 0.12) 49%,
        rgba(0, 64, 255, 0.20) 50%,
        rgba(0, 11, 129, 0.12) 51%,
        transparent 52%,
        transparent 100%
    );
    box-shadow: 
        0 0 8px rgba(0, 11, 129, 0.2),
        0 0 16px rgba(0, 64, 255, 0.15);
}

/* Disable disclaimer lighting effect on login and password pages */
.page-login .footer-disclaimer .disclaimer-spotlight,
.page-password .footer-disclaimer .disclaimer-spotlight {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    animation: none !important;
}

/* Animations */
@keyframes gridFloat {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.6;
    }
    25% {
        transform: translate(3px, -1px);
        opacity: 0.8;
    }
    50% {
        transform: translate(-2px, 3px);
        opacity: 0.7;
    }
    75% {
        transform: translate(1px, -2px);
        opacity: 0.9;
    }
}

@keyframes smoothSpotlightFloat {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 1;
    }
    12% {
        transform: translateX(-40px) translateY(50px) rotate(0.3deg);
        opacity: 0.85;
    }
    25% {
        transform: translateX(80px) translateY(-30px) rotate(-0.5deg);
        opacity: 1.1;
    }
    38% {
        transform: translateX(120px) translateY(70px) rotate(0.7deg);
        opacity: 1.2;
    }
    50% {
        transform: translateX(-50px) translateY(100px) rotate(-0.4deg);
        opacity: 0.9;
    }
    62% {
        transform: translateX(-100px) translateY(-40px) rotate(0.6deg);
        opacity: 1.15;
    }
    75% {
        transform: translateX(70px) translateY(-80px) rotate(-0.8deg);
        opacity: 0.8;
    }
    87% {
        transform: translateX(140px) translateY(40px) rotate(0.2deg);
        opacity: 1.05;
    }
}

/* Scan Line Animation - Down and Back Up */
@keyframes scanLine {
    0% {
        transform: translateY(-4px);
        opacity: 0;
    }
    2% {
        opacity: 1;
    }
    48% {
        transform: translateY(100vh);
        opacity: 1;
    }
    50% {
        transform: translateY(100vh);
        opacity: 0.3;
    }
    52% {
        transform: translateY(100vh);
        opacity: 0.3;
    }
    60% {
        transform: translateY(80vh);
        opacity: 0.3;
    }
    70% {
        transform: translateY(60vh);
        opacity: 0.3;
    }
    80% {
        transform: translateY(40vh);
        opacity: 0.3;
    }
    90% {
        transform: translateY(20vh);
        opacity: 0.3;
    }
    98% {
        transform: translateY(-4px);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-4px);
        opacity: 0;
    }
}

/* Responsive adjustments - Height-based scaling */
@media (max-height: 700px) {
    .login-card {
        padding: 24px;
        gap: 20px;
        min-height: 350px;
    }
    
    .login-title {
        font-size: 1.6rem;
    }
    
    .login-subtitle {
        font-size: 0.95rem;
    }
    
    .login-tab {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 12px 12px 12px 40px;
        font-size: 0.95rem;
    }
    
    .login-btn {
        padding: 14px 22px;
        font-size: 1.05rem;
    }
}

@media (max-height: 600px) {
    .login-card {
        padding: 20px;
        gap: 16px;
        min-height: 300px;
    }
    
    .login-title {
        font-size: 1.4rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
    
    .login-tab {
        padding: 8px 6px;
        font-size: 0.85rem;
    }
    
    .form-input {
        padding: 10px 10px 10px 36px;
        font-size: 0.9rem;
    }
    
    .login-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-height: 500px) {
    .login-card {
        padding: 16px;
        gap: 12px;
        min-height: 250px;
    }
    
    .login-title {
        font-size: 1.2rem;
    }
    
    .login-subtitle {
        font-size: 0.8rem;
    }
    
    .login-tab {
        padding: 6px 4px;
        font-size: 0.8rem;
    }
    
    .form-input {
        padding: 8px 8px 8px 32px;
        font-size: 0.85rem;
    }
    
    .login-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-height: 400px) {
    .login-card {
        padding: 12px;
        gap: 8px;
        min-height: 200px;
    }
    
    .login-title {
        font-size: 1rem;
    }
    
    .login-subtitle {
        font-size: 0.75rem;
    }
    
    .login-tab {
        padding: 4px 2px;
        font-size: 0.75rem;
    }
    
    .form-input {
        padding: 6px 6px 6px 28px;
        font-size: 0.8rem;
    }
    
    .login-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .form-group {
        margin-bottom: 8px;
    }
    
    .form-options {
        margin-bottom: 12px;
    }
}

/* Ensure no scrollbars anywhere */
* {
    box-sizing: border-box;
}

/* Perfect centering with viewport units */
.login-main {
    /* Use viewport units for perfect centering */
    min-height: calc(100vh - var(--header-height) - 60px); /* Account for footer */
    max-height: calc(100vh - var(--header-height) - 60px); /* Account for footer */
    height: calc(100vh - var(--header-height) - 60px); /* Fixed height to prevent overflow */
}

/* Width-based responsive adjustments */
@media (max-width: 480px) {
    .login-main {
        padding: 10px;
        min-height: calc(100vh - var(--header-height) - 60px);
        max-height: calc(100vh - var(--header-height) - 60px);
        height: calc(100vh - var(--header-height) - 60px);
    }
    
    .login-container {
        padding: 10px 0;
        height: 100%;
    }
    
    .login-card {
        padding: 20px;
        gap: 16px;
        border-radius: 16px;
        max-width: 100%;
        min-height: 300px;
        max-height: calc(100vh - var(--header-height) - 20px);
    }
    
    .login-title {
        font-size: 1.5rem;
    }
    
    .login-tabs {
        gap: 4px;
    }
    
    .login-tab {
        padding: 10px 6px;
        font-size: 0.8rem;
        gap: 4px;
    }
    
    .form-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

@media (max-width: 360px) {
    .login-main {
        padding: 5px;
        min-height: calc(100vh - var(--header-height) - 60px);
        max-height: calc(100vh - var(--header-height) - 60px);
        height: calc(100vh - var(--header-height) - 60px);
    }
    
    .login-container {
        padding: 5px 0;
        height: 100%;
    }
    
    .login-card {
        padding: 16px;
        gap: 12px;
        border-radius: 12px;
        min-height: 250px;
        max-height: calc(100vh - var(--header-height) - 10px);
    }
    
    .login-title {
        font-size: 1.3rem;
    }
    
    .login-tab {
        padding: 8px 4px;
        font-size: 0.75rem;
    }
}

/* Ultra-small screens - extreme compression */
@media (max-height: 300px) {
    .login-card {
        padding: 8px;
        gap: 6px;
        min-height: 150px;
    }
    
    .login-title {
        font-size: 0.9rem;
    }
    
    .login-subtitle {
        font-size: 0.7rem;
    }
    
    .login-tab {
        padding: 2px 1px;
        font-size: 0.7rem;
    }
    
    .form-input {
        padding: 4px 4px 4px 24px;
        font-size: 0.75rem;
    }
    
    .login-btn {
        padding: 6px 8px;
        font-size: 0.8rem;
    }
    
    .form-group {
        margin-bottom: 4px;
    }
    
    .form-options {
        margin-bottom: 8px;
    }
}