/* === Main Container === */
.auth-container {
    max-width: 500px;
    margin: 40px auto; /* Center horizontally */
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* === Header Title === */
.auth-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
}

/* === Input and Select Fields === */
.auth-container input,
.auth-container select {
    width: 100%; /* Full width */
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Includes padding in width */
    font-size: 15px;
}

/* === CAPTCHA image block === */
.auth-container .tcn-captcha p {
    margin-bottom: 10px;
    text-align: center;
}

/* === Submit Button === */
.auth-container button {
    width: 100%;
    padding: 14px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.auth-container button:hover {
    background: #005f8d;
}

/* === Error Messages === */
.auth-container .error {
    color: red;
    text-align: center;
    margin-bottom: 15px;
}

/* === Footer Link === */
.auth-container p a {
    color: #0073aa;
    text-decoration: none;
}

.auth-container p a:hover {
    text-decoration: underline;
}
