/* Entire page background + centering */
body {
    background-color: #f5f6fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding-top: 20px; /* ensures top visibility */
    min-height: 100vh; /* full vertical space */
    overflow-y: auto;  /* allows vertical scrolling */
}

/* Main containers for all pages */
.login-container, .register-container, .paywall-container, .success-container, .forgot-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main content box */
.login-box, .register-box, .paywall-box, .success-box, .forgot-box {
    width: 320px;
    text-align: center;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Page heading */
h2 {
    font-weight: 500;
    margin-bottom: 25px;
    font-size: 26px;
    color: #333;
}

/* Form fields */
input[type="email"], input[type="password"], input[type="text"] {
    width: 100%;
    padding: 12px 10px;
    margin: 12px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    box-sizing: border-box;
}

/* Main login/register buttons */
button {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    background-color: #0078d4;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #005fa3;
}

/* Error messages */
.error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 12px;
}

/* Register/Login navigation links */
.register-link, .login-link {
    margin-top: 22px;
    font-size: 14px;
}

.register-link a, .login-link a {
    color: #0078d4;
    text-decoration: none;
}

.register-link a:hover, .login-link a:hover {
    text-decoration: underline;
}

/* Success Page Styling */
.success-box h2 {
    font-size: 28px;
    color: #28a745;
    margin-bottom: 22px;
}

.success-box p {
    font-size: 18px;
    margin: 10px 0;
}

/* Forgot Password Styling */
.forgot-box h2 {
    font-size: 24px;
    color: #0078d4;
    margin-bottom: 20px;
}

.forgot-box p {
    font-size: 16px;
    margin: 10px 0;
}

/* Forgot Password Icon Link */
.forgot-password {
    margin-top: 15px;
    text-align: center;
}

.forgot-password a {
    text-decoration: none;
    color: #007bff;
    font-size: 14px;
}

/* Unified icon-style button (used on account page) */
.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #ffc107;
    color: #212529;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 12px;
    text-decoration: none;
    width: auto;
    min-width: 240px;
    max-width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.icon-button:hover {
    background-color: #e0a800;
    color: #212529;
}

.icon-button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

