body {
    font-family: 'Poppins', sans-serif;
    /* Gradient background from the Foxhog logo */
    background: linear-gradient(135deg, #c31432, #240b36);
    background-size: cover;
    background-repeat: no-repeat;
}

.form-container {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    backdrop-filter: blur(5px);
}

.logo {
    max-width: 200px;
    /*margin-bottom: 20px;     background: linear-gradient(135deg, #c31432, #240b36);*/
    /*padding: 10px;*/
    /*border-radius: 5px;*/
}

h3 {
    color: #333;
    font-weight: 600;
}

.btn-primary {
    background-color: #d1243e; /* Main red from logo */
    border-color: #d1243e;
    padding: 12px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #a71d31;
    border-color: #a71d31;
}

.btn-success {
    padding: 12px;
    font-weight: 500;
}


.form-control {
    padding: 12px;
    border-radius: 8px;
}

.input-group-text {
    background-color: #f0f0f0;
    border-right: 0;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(209, 36, 62, 0.25);
    border-color: #d1243e;
}

.form-check-label a {
    color: #d1243e;
    text-decoration: none;
    font-weight: 500;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.form-check-input:checked {
    background-color: #d1243e;
    border-color: #d1243e;
}

/* Add these new styles to your existing style.css file */

.form-container-full {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 10px B30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 900px; /* Wider container for the full form */
    margin: 0 auto; /* Center the container */
}

.form-section-title {
    color: #c31432; /* Foxhog Red */
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-weight: 600;
}

.form-label {
    font-weight: 500;
    color: #555;
}

/* Ensure Font Awesome brand icons are visible */
.fab {
    font-family: "Font Awesome 6 Brands";
}

textarea.form-control {
    resize: vertical;
}

.btn-lg {
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
}
/* Add these new styles to your existing style.css file */

.thank-you-container {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

.success-icon {
    font-size: 6rem; /* Makes the icon large */
    color: #28a745; /* A standard success green color */
    line-height: 1;
}

.thank-you-container .lead {
    font-size: 1.5rem;
    font-weight: 300;
    color: #333;
}

.thank-you-container .display-5 {
    font-weight: 600;
    color: #c31432; /* Foxhog Red */
}
/* =================================================================
   3. APPLICATION TRACKING PAGE STYLES
   (For track-application.php)
================================================================= */
.tracking-container {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 700px;
    backdrop-filter: blur(5px);
}

.progress-tracker {
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: relative;
    margin: 30px 0 40px 0;
}

.progress-tracker::before {
    content: '';
    position: absolute;
    top: 35%;
    left: 10%;
    right: 10%;
    height: 3px;
    background-color: #e0e0e0;
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 0 10px;
}

.progress-step .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto 10px auto;
    border: 3px solid #e0e0e0;
    transition: background-color 0.3s, border-color 0.3s;
}

.progress-step .label {
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* Completed Step */
.progress-step.completed .icon {
    background-color: #28a745; /* Success Green */
    border-color: #28a745;
}
.progress-step.completed .label {
    color: #28a745;
    font-weight: bold;
}

/* Active Step */
.progress-step.active .icon {
    background-color: #0d6efd; /* Primary Blue */
    border-color: #0d6efd;
}
.progress-step.active .label {
    color: #0d6efd;
    font-weight: bold;
}
