.form-card {
    animation: slideUp 0.6s ease-out;
}

.progress-bar {
    height: 4px;
    background: #1464aa;
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1464aa 0%, #1464aa 100%);
    width: 50%;
    transition: width 0.4s ease;
}

.step {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.step.active {
    display: block;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    font-size: 13px;
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background: #d2ebfa;
    border: 1px solid #1464aa;
    color: #1464aa;
    position: relative;
}

.step-dot.active {
    background: #1464aa;
    color: white;
}

.step-dot.completed {
    background: #96c846;
    color: #1464aa;
}

.step-label {
    color: #1464aa;
    font-size: 12px;
    margin-top: 8px;
    text-align: center;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: #1464aa;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}



.form-group.half:nth-child(even) {
    margin-right: 0;
}

label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select {
    width: 100%;
    /* padding: 12px 14px; */
    border-radius: 0px;
    font-size: 14px;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
select:focus {
    box-shadow: 0 0 0 3px rgba(0, 82, 163, 0.1);
}

input[type="file"] {
    display: none;
}

.file-upload {
    border: 1px dotted #1464aa;
    border-radius: 0px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #d2ebfa;
}

.file-upload:hover,
.file-upload.dragover {
    border-color: #1464aa;
    background: rgba(0, 82, 163, 0.05);
}

.file-upload-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1464aa;
}

.file-upload-text {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.file-upload-subtext {
    color: #1464aa;
    font-size: 12px;
}

.file-preview {
    margin-top: 16px;
    padding: 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1464aa;
    font-size: 13px;
}

.file-preview-icon {
    font-size: 20px;
    color: #1464aa;
}

.social-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: #1464aa;
}

.social-input input {
    flex: 1;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

button {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-next {
    color: white;
    background: #1464aa
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 163, 0.3);
}

.btn-back {
    background: #96c846;
    color: #1464aa;
}

.btn-back:hover {
    background: #1464aa;
    color: white;
}

.btn-submit {
    color: white;
    background: #1464aa;
}

.btn-submit:hover {
    background: #96c846;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.required {
    color: red;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-top: 2px;
}

.success-message {
    background: rgba(150, 200, 70, 0.1);
    border-left: 4px solid #96c846;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    color: #96c846;
    font-size: 14px;
}

@media (max-width: 600px) {
    .form-card {
        padding: 24px;
    }

    .form-group.half {
        display: block;
        width: 100%;
        margin-right: 0 !important;
    }

    .form-actions {
        flex-direction: column;
    }

    .step-title {
        font-size: 18px;
    }

    .header h1 {
        font-size: 24px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}