/* Custom Styles */
body {
    background-color: #030a1a;
    overflow-x: hidden;
}

/* --- Banner Logic --- */
.hero-banner {
    width: 100%;
    /* Placeholder image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Desktop: Fixed Height 500px */
@media (min-width: 768px) {
  .hero-banner {
        height: auto;
    }
}

/* Mobile/Small Devices: 1:1 Aspect Ratio */
@media (max-width: 767.98px) {
    .hero-banner {
        height: auto;
    }
}

.form-container {
    background:#030a1a;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top:0px;
    position: relative;
    z-index: 2;
    color:#ffffff;
}

.btn-custom {
    background-color: #80c343;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #80c343;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px 0 rgba(0,0,0,0.3);
    
}
.form-check-label a{color:white;}

/* Modal Customization */
.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-footer {
    border-top: none;
}

.success-icon {
    font-size: 4rem;
    color: #198754;
}

/*important class */
.form__error-text {
    font-size: 13px;
    color: #fc4c3ff0;
}

.form__success-text {
    font-size: 16px;
    color: #4caf50;
}