body {
    font-family: 'Rubik', sans-serif;
    background-color: white;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.form-container {
    width: 100%;
    max-width: 800px;
    background: white;
    padding: 80px 20px 90px;
}

h1 {
    color: #333;
    font-size: 32px;
    margin: 0 0 100px 0;
    padding: 0;
    font-weight: 300;
    text-align: center;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.form-field {
    width: 33.33%;
    padding: 0 10px;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.form-field label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
    font-weight: 500; /* Alterado para 500 */
}

.required-asterisk {
    color: #ef9090;
}

.form-field input {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
}

.button-container {
    margin-top: 90px;
    text-align: center;
}

.simulate-btn {
    background-color: #C0B0FF;
    color: #000;
    border: none;
    padding: 12px 0;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    width: 40%;
    transition: background-color 0.3s ease;
    font-weight: 500; /* Alterado para 500 */
    font-family: 'Rubik', sans-serif;
}

.simulate-btn:hover {
    background-color: #A899E6;
}

@media (max-width: 768px) {
    .form-field {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .simulate-btn {
        width: 80%;
    }
    
    h1 {
        margin-bottom: 70px;
        font-size: 24px;
    }
    
    .form-container {
        padding: 50px 20px 60px;
    }
    
    .button-container {
        margin-top: 60px;
    }
}