/* --- Global Styles --- */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    /* Set the background image and cover the screen */
    background-image: url('background.jpg'); /* Change if your image has a different name */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Use a futuristic-feeling font */
    font-family: 'Orbitron', sans-serif; 
    color: #00ffff; /* A default cyan text color */
}

/* --- Container for centering --- */
.content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* --- The Form Card Styling --- */
.form-card {
    background: rgba(10, 15, 30, 0.85); /* Semi-transparent dark blue background */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), 0 0 40px rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    text-align: center;
}

/* --- Typography --- */
.neon-text {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #ff00de, /* A pink glow to match the background */
        0 0 30px #ff00de,
        0 0 40px #ff00de,
        0 0 55px #ff00de,
        0 0 75px #ff00de;
    margin-bottom: 10px;
}

.description-text {
    font-size: 1rem;
    color: #ff00de; /* The pink text for the description */
    margin-bottom: 30px;
    line-height: 1.5;
}

/* --- Input Fields Styling --- */
.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: #00ffff; /* Cyan labels */
    font-size: 1rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

/* All input types and textareas */
input[type="text"], textarea {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    background: rgba(10, 15, 30, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 5px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Add a cyan glow on focus */
input[type="text"]:focus, textarea:focus {
    outline: none;
    border: 1px solid #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

textarea {
    resize: vertical;
}

/* --- Disclaimer Styling --- */
.disclaimer-group {
    text-align: left;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.disclaimer-group input[type="checkbox"] {
    margin-top: 5px;
    margin-right: 15px;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0, 255, 255, 0.6);
    border-radius: 4px;
    cursor: pointer;
    background: rgba(10, 15, 30, 0.7);
    display: inline-block;
    vertical-align: middle;
    transition: all 0.2s ease;
}

.disclaimer-group input[type="checkbox"]:checked {
    background-color: #ff00de;
    border: 1px solid #ff00de;
}

.disclaimer-group input[type="checkbox"]:checked::after {
    content: "\2713"; /* Checkmark symbol */
    color: white;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.disclaimer-label {
    color: #00ffff;
    font-size: 0.9rem;
    line-height: 1.6;
}

.disclaimer-label ol {
    margin: 10px 0 0 20px;
}

.disclaimer-label ol li {
    margin-bottom: 5px;
}

/* --- Submit Button Styling --- */
.neon-button {
    background: none;
    border: 2px solid #ff00de;
    color: #ff00de;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #ff00de, 0 0 10px #ff00de;
}

/* Add a pink hover effect */
.neon-button:hover {
    background: #ff00de;
    color: #fff;
    box-shadow: 
        0 0 10px #ff00de, 
        0 0 20px #ff00de, 
        0 0 40px #ff00de;
}

#status-message {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: bold;
}