/* fica.css */

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.fica-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.fica-header {
    text-align: center;
    margin-bottom: 30px;
}

.fica-header h3 {
    margin: 0;
    color: #666;
    font-size: 18px;
}

.fica-header h1 {
    margin: 5px 0 0 0;
    color: #333;
    font-size: 24px;
}

.fica-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fica-section h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    color: #555;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.btn-submit,
.btn-back {
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    transition: background-color 0.3s ease;
}

.btn-submit {
    background-color: #28a745;
}

.btn-submit:hover {
    background-color: #218838;
}

.btn-back {
    background-color: #007bff;
    margin-bottom: 10px;
}

.btn-back:hover {
    background-color: #0056b3;
}

.error-message {
    color: red;
    margin-top: 10px;
    font-size: 14px;
}

.progress {
    width: 100%;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 20px;
}

.progress-bar {
    width: 0;
    height: 20px;
    background-color: #28a745;
    transition: width 0.4s ease;
}

@media (max-width: 600px) {
    .fica-container {
        padding: 20px;
    }
    
    .fica-header h1 {
        font-size: 20px;
    }
    
    .fica-header h3 {
        font-size: 16px;
    }
    
    .form-group select,
    .form-group input {
        padding: 10px;
        font-size: 14px;
    }
    
    .btn-submit,
    .btn-back {
        font-size: 14px;
        padding: 10px 15px;
    }
}
