/* Forms Styles */
/* Used by: contact, preorder pages */

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin: 15px 0;
    font-size: 1.1rem;
}

.contact-list i {
    margin-right: 10px;
    color: #aa8e5f;
}

.contact-list a {
    color: #aa8e5f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #82693e;
    text-decoration: underline;
}

/* Form Headings */
.form-section-header {
    font-size: 1.7em;
    margin-top: 3%;
    color: #aa8e5f;
    padding: 20px;
}

/* Form Containers */
.form-container {
    max-width: 500px;
    margin: 0 auto;
}

/* Form Element Spacing */
.form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

/* Form Status Messages */
.form-status {
    margin-top: 15px;
}

/* Preorder Button Disabled State */
#subsButton:disabled {
    background-color: gray !important;
    color: white !important;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Form Description Text */
.form-description {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: center;
    margin: 20px;
}

/* Form Response Alerts */
.alert {
    padding: 12px 20px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 0.95rem;
}

.alert-info {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}
