body {
    font-family: 'Work Sans', 'Open Sans', Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.hero {
    background: url('/img/banner.jpg') center center/cover no-repeat, rgba(82, 35, 152, 0.7);
    color: white;
    padding: 30px 0;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 600;
}

.form-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group label {
    position: absolute;
    top: -8px;
    left: 12px;
    background: white;
    padding: 0 4px;
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    z-index: 1;
    transition: all 0.3s ease;
}

.form-select, .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #6b7280;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #374151;
    transition: all 0.3s ease;
    position: relative;
}

.form-select {
    appearance: none;
    cursor: pointer;
}

.form-select:focus, .form-control:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-select:focus + label, .form-control:focus + label {
    color: #6366f1;
}

.form-group::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #6b7280;
    pointer-events: none;
    z-index: 1;
}

.form-group.input-group::after {
    display: none;
}

.submit-btn {
    background-color: rgb(255, 233, 0);
    border: none;
    border-radius: 30px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    color: black;
}

.submit-btn:hover {
    background-color: #d6521b;
}

.section2 {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 40px;
}

.section2 h1 {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(82 35 152);
}

.section2 p {
    font-size: 17px;
}

.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.alert-danger {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert.show {
    display: block;
}

.step-hidden {
    display: none;
}

.progress-bar {
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #6366f1;
    transition: width 0.3s ease;
}

.step-indicator {
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #6b7280;
}

.btn-secondary {
    background-color: #6b7280;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 1rem 2rem;
    font-weight: 600;
    cursor: pointer;
    margin-right: 10px;
}

.btn-secondary:hover {
    background-color: #4b5563;
}

footer {
    background-color: rgba(82 35 152);
    color: white;
    padding: 20px 0;
        font-size: 0.9rem;
    text-align: center;
}

a{
    color:white;
}