/* --- Base Styles --- */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: sans-serif;
    background-color: #111;
    color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* --- Container for Auth and Pricing --- */
#auth-container, .container {
    background-color: #2a2a2a;
    padding: 30px 40px;
    border-radius: 8px;
    border: 1px solid #444;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

h1 {
    font-size: 1.8em;
    margin-bottom: 25px;
    color: #eee;
}

/* --- Form Styles --- */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="email"],
input[type="password"] {
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid #555;
    background-color: #333;
    color: #eee;
    border-radius: 4px;
    font-size: 1em;
}

input::placeholder {
    color: #888;
}

button[type="submit"] {
    padding: 12px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* --- Links and Messages --- */
p {
    margin-top: 20px;
}

a {
    color: #00aaff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#error-message, #status {
    color: #f44336; /* Use a red color for errors */
    margin-top: 15px;
    min-height: 1.2em; /* Reserve space */
}


/* --- Pricing Page Specifics --- */
.pricing-plan {
    background-color: #333;
    border: 1px solid #555;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.pricing-plan h2 {
    margin-top: 0;
    font-size: 1.5em;
    color: #00aaff;
}

.pricing-plan p {
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0 20px 0;
}

.pricing-plan button {
    width: 100%;
    padding: 12px;
    cursor: pointer;
    background-color: #28a745; /* Green for subscribe */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.pricing-plan button:hover {
    background-color: #218838;
}