/**2faStyles.css
 * 5.0 - General Container Styling
 * Purpose: Style the container for both preview and publish modes.
 * Called From: Included via %siteAssetPath%/authStyles.css in each.html.
 */
.auth-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    text-align: center;
}

/**
 * 5.1 - Form and Button Styling
 * Purpose: Style the auth form inputs and button in publish mode, reusable for preview button.
 * Called From: Included via %siteAssetPath%/authStyles.css in each.html.
 */
.auth-input {
    padding: 10px;
    width: 125px; /* 25% wider than 100px */
    margin: 0 auto 10px auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: block;
}

.auth-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.auth-button:hover {
    background: #0056b3;
}

/**
 * 5.2 - Error Message Styling
 * Purpose: Style error messages for lockout or invalid attempts in publish mode.
 * Called From: Included via %siteAssetPath%/authStyles.css in each.html.
 */
.auth-error {
    color: red;
    margin-top: 10px;
    font-size: 14px;
}

/**
 * 5.3 - Secret Key Display Styling
 * Purpose: Style the secret key display in preview mode.
 * Called From: Included via %siteAssetPath%/authStyles.css in each.html.
 */
.auth-secretKey {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    color: #333;
}