/* Full-page background */
body {
    background-color: #FCEAE4;
    margin: 0;
    padding: 0;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 100px; /* Leave space for fixed navbar */
    padding-left: 15px;
    padding-right: 15px;
}


/* Auth card (login & signup) */
.auth-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Responsive fix: Prevents container from touching edges on small screens */
@media (max-width: 480px) {
    .auth-card {
        width: 90%;  /* ✅ Makes the form slightly smaller on mobile */
        padding: 1.5rem; /* ✅ Reduces padding to fit better */
    }
}

/* Title */
.auth-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Subtitle */
.auth-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Form styling */
.form-group {
    text-align: left;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: #333;
}

/* Checkbox container */
.checkbox-container {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
}

.checkbox-container input {
    margin-right: 8px;
}

/* Remove button styles to inherit from base.css */
.btn-primary {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

/* Forgot password link */
.forgot-password {
    margin-top: 10px;
    font-size: 14px;
}

.forgot-password a {
    color: #6a5acd;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.price-highlight {
    background-color: #e6f4ea; /* soft green tint */
    border-left: 4px solid #49b675; /* Tottable-friendly green */
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 1rem;
    text-align: center;
}

.simple-pricing-toggle {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.simple-box {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px 14px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    max-width: 260px;
    width: 100%;
    transition: border-color 0.2s ease;
}

.simple-box input[type="radio"] {
    accent-color: #0366d6;
    transform: scale(1.1);
}

.simple-box:hover {
    border-color: #888;
}

.savings {
    color: #0a8754;
    font-weight: 600;
    font-size: 13px;
    margin-left: 4px;
}

.simple-box.selected {
    border-color: #0366d6;
}
