body {
    background-color: #f4f6f9;
    padding-top: 70px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.form-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 30px;
}

.form-header {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    margin-top: auto;
    border-top: 1px solid #e9ecef;
}

.footer img {
    height: 22px;
    margin-bottom: 5px;
    vertical-align: middle;
}

.footer .developer-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer .developer-text {
    margin-right: 5px;
}

.progress {
    height: 10px;
    margin-bottom: 30px;
}

.progress-bar {
    background-color: #4a90e2;
}

.step-indicator {
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 767.98px) {
    .form-header {
        text-align: center;
    }
    
    .form-header img {
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .form-header {
        display: flex;
        align-items: center;
    }
    
    .form-header img {
        margin-right: 1rem;
    }
}

