﻿/* testers_wanted.css */

body {
    background: #0a0a0f;
    color: #e0e0ff;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    max-width: 900px;
    margin: 40px auto;
    background: rgba(20, 20, 40, 0.8);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 25px #00f0ff;
}

.title {
    text-align: center;
    font-size: 2.4em;
    color: #00eaff;
    text-shadow: 0 0 10px #00eaff;
}

h2 {
    color: #00eaff;
    text-shadow: 0 0 6px #00eaff;
    margin-top: 30px;
}

p, li {
    font-size: 1.1em;
    line-height: 1.6em;
}

ul {
    margin-left: 20px;
}

.apply-wrapper {
    text-align: center;
    margin-top: 40px;
}

.apply-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.4em;
    color: #0a0a0f;
    background: #00eaff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 20px #00eaff;
    transition: 0.2s ease;
}

.apply-button:hover {
    background: #00ffff;
    box-shadow: 0 0 30px #00ffff;
    transform: scale(1.05);
}

/* FORM PAGE STYLING */

.form-container {
    width: 80%;
    max-width: 700px;
    margin: 40px auto;
    background: rgba(20, 20, 40, 0.85);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 25px #ff00ff;
}

.form-title {
    text-align: center;
    font-size: 2em;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

label {
    display: block;
    margin-top: 20px;
    font-size: 1.1em;
    color: #e0e0ff;
}

input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border-radius: 8px;
    border: none;
    background: #1a1a2e;
    color: #e0e0ff;
    font-size: 1em;
    box-shadow: inset 0 0 10px #5500ff;
}

textarea {
    height: 120px;
}

.button-row {
    margin-top: 30px;
    text-align: center;
}

button {
    padding: 12px 30px;
    margin: 10px;
    font-size: 1.2em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s ease;
}

.submit-btn {
    background: #00ff9d;
    color: #0a0a0f;
    box-shadow: 0 0 20px #00ff9d;
}

.submit-btn:hover {
    background: #00ffb7;
    box-shadow: 0 0 30px #00ffb7;
}

.clear-btn {
    background: #ff0066;
    color: #0a0a0f;
    box-shadow: 0 0 20px #ff0066;
}

.clear-btn:hover {
    background: #ff3385;
    box-shadow: 0 0 30px #ff3385;
}
