/* Landing Page Form Section */
.landing-page-form-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--color-light-bg);
    overflow: hidden;
}

.landing-page-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.05) 0%, rgba(var(--color-primary-rgb), 0.1) 100%);
    z-index: 0;
}

.landing-page-form-section .container {
    position: relative;
    z-index: 1;
}

.landing-page-form-section .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--color-white);
}

.landing-page-form-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.landing-page-form-section .card-body {
    position: relative;
}

.landing-page-form-section h2 {
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.landing-page-form-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.landing-page-form-section .form-description {
    color: var(--color-text);
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: center;
}

.landing-page-form-section .form-label {
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.landing-page-form-section .form-control,
.landing-page-form-section .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--color-white);
    color: var(--color-text);
    transition: all 0.3s ease;
}

.landing-page-form-section .form-control:focus,
.landing-page-form-section .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.2);
}

.landing-page-form-section .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0.25em;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.landing-page-form-section .form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.landing-page-form-section .form-check-label {
    padding-left: 8px;
    color: var(--color-text);
}


.landing-page-form-section .form-text {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 5px;
}

.landing-page-form-section .alert {
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
    border: none;
    animation: fadeInDown 0.5s ease-in-out;
}

.landing-page-form-section .alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.landing-page-form-section .alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Decoration elements */
.landing-page-form-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(var(--color-primary-rgb), 0.1);
    z-index: 0;
}

.landing-page-form-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(var(--color-primary-rgb), 0.1);
    z-index: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .landing-page-form-section {
        padding: 60px 0;
    }
    
    .landing-page-form-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .landing-page-form-section {
        padding: 50px 0;
    }
    
    .landing-page-form-section .card-body {
        padding: 25px;
    }
    
    .landing-page-form-section h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .landing-page-form-section .form-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .landing-page-form-section {
        padding: 40px 0;
    }
    
    .landing-page-form-section .card-body {
        padding: 20px;
    }
    
    .landing-page-form-section h2 {
        font-size: 1.4rem;
    }
    
    .landing-page-form-section .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
