/* Base Styles */
body {
    background-color: #000;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    position: relative;
}

/* Logo Positioning - now with proper spacing */
.header-logo {
    position: fixed;
    top: 5px; /* Increased from 5px for better spacing */
    left: 50%;
    transform: translateX(-50%);
    max-width: 175px;
    width: 100%;
    z-index: 10;
}

/* Form Container - adjusted to account for logo */
.container {
    background: transparent;
    padding: 2rem;
    max-width: 500px;
    margin: 120px auto 0; /* Reduced top margin from 180px */
    text-align: center;
    position: relative;
    z-index: 5; /* Lower than logo */
}

/* Form Elements */
input {
    padding: 10px;
    margin: 1px auto;
    width: 80%;
    max-width: 300px;
    display: block;
    border: none;
    border-radius: 2px;
    background: rgba(255,255,255,0.9);
    position: relative;
    z-index: 2; /* Above container but below logo */
}

button {
    padding: 12px;
    margin: 20px auto;
    width: 80%;
    max-width: 300px;
    display: block;
    background: #8B0000;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

/* Bottom Decoration */
.bottom-decoration {
    position: fixed;
    height: 600px;
	top: 500px;
    width: 100%;
    opacity: 0.2;
    max-height: 600px;
    z-index: 1;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 4px;
    color: white;
    z-index: 100;
}

.toast.success { background: #4CAF50; }
.toast.error { background: #F44336; }