/* register.php — page-specific (standalone page, no main theme) */

body {
    font-family: Arial, sans-serif;
    background-color: #0A0F14;
    color: #d5ecff;
    margin: 0;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-height: 100vh;
}

h1 {
    font-size: 2rem;
    color: #00AFFF;
    text-shadow: 0 0 12px #0088cc;
    margin-bottom: 10px;
}

.card {
    background: #05070A;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 0 18px #00AFFF22;
    border: 1px solid #00AFFF33;
    width: 460px;
}

.card h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #00AFFF;
    text-align: center;
    text-shadow:
        0 0 6px #00AFFF,
        0 0 14px #0088cc;
}

.agreement-body {
    max-height: 240px;
    overflow-y: auto;
    padding-right: 8px;
    font-size: 0.9rem;
    color: #9ecff5;
    line-height: 1.45;
}

.agreement-body b {
    color: #cfe9ff;
}

.agreement-body::-webkit-scrollbar {
    width: 6px;
}

.agreement-body::-webkit-scrollbar-thumb {
    background: #00AFFF55;
    border-radius: 4px;
}

.form-container {
    text-align: center;
}

.form-container label {
    display: block;
    margin-bottom: 8px;
    color: #9ecff5;
    text-align: left;
}

.form-container input[type="text"],
.form-container input[type="password"],
.form-container select {
    width: 94%;
    padding: 10px;
    font-size: 1rem;
    background: #0A0F14;
    color: #fff;
    border: 1px solid #00AFFF33;
    border-radius: 8px;
    margin-bottom: 15px;
}

.form-container select {
    cursor: pointer;
}

.form-container button {
    padding: 12px 18px;
    font-size: 16px;
    background: #00AFFF;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s ease;
    width: 100%;
}

.form-container button:hover {
    background: #0088cc;
}

.form-container p {
    color: #9ecff5;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #7aa9c7;
    margin-bottom: 15px;
    text-align: left;
}

.password-note {
    font-size: 0.8rem;
    color: #7aa9c7;
    margin-bottom: 10px;
    text-align: left;
}

.password-note b {
    color: #cfe9ff;
}

.error-message {
    color: red;
    font-weight: bold;
    margin-bottom: 20px;
}
