/* /static/css/user/start_trial.css */

/* --- Page-level Styles --- */
/* These rules are unchanged as per your request */

/* --- Title Section Styling --- */
#index-banner h1 {
    font-size: 2.1rem;
    color: #343a40;
    text-align: center;
    margin-bottom: 20px; /* Space between title and the form card */
}

/* --- THIS IS THE MAIN FIX: The Form Container becomes the "Card" --- */
.form-container-card {
	margin: 0 auto;
	width: 100%;
	max-width: 600px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px 40px 40px 40px;
    border: 1px solid #e9ecef;
}

.intro-text {
    text-align: center;
    margin-bottom: 35px;
    font-size: 1.1rem;
    color: #6c757d;
}

/* --- Form Elements --- */
.form-group {
    margin-bottom: 22px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    box-sizing: border-box;
}

.form-group select{
	display: block;
}

/* --- Button Styling --- */
.form-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}
.btn-primary {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background-color: #007bff;
    color: white;
    padding: 5px 20px 40px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

/* --- Message & Spinner --- */
.messageboard, .spinner-container {
    display: none;
    margin: 20px 0;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
}