body {
    margin: 0;
    font-family: "Inter", sans-serif;
}

.information-cliente {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 0;
    color: #000000;
    position: relative;
}

.information-cliente h1 {
    font-size: 4.2em;
    color: #195043;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 30px;
}

.form-container {
    background-color: #E1E8E7;
    border-radius: 10px;
    padding: 20px 50px 30px 50px;
    margin: 30px auto;
    height: 482px;
    width: 1060px;
    position: relative;
}

.form-container h2 {
    color: #000000;
    font-size: 1.8em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: left;
    padding-left: 0;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1em;
    color: #616161;
    margin-bottom: 13px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #B0BEC5;
    border-radius: 4px;
    font-size: 1em;
    color: #424242;
    background-color: #ffffff;
    box-sizing: border-box;
}

.continue-button-container {
    display: flex;
    justify-content: flex-end;
    width: 800px;
    margin: 40px 340px auto;
    position: relative;
}

.continue-button {
    background-color: #195043;
    color: #ffffff;
    padding: 8px 70px;
    border: none;
    border-radius: 150px;
    font-size: 1.1em;
    cursor: pointer;
    font-weight: 400;
    transition: background-color 0.3s ease;
    margin-right: 50px;
}

.continue-button:hover {
    background-color: #000000;
}

@media (max-width: 900px) {
    .form-container,
    .continue-button-container {
        width: 90%;
    }
    .form-container {
        padding: 20px 30px 30px 30px;
    }
    .continue-button {
        margin-right: 30px;
    }
}

@media (max-width: 768px) {
    .information-cliente h1 {
        font-size: 2.8em;
    }

    .form-container {
        padding: 20px;
        margin: 20px auto;
    }

    .form-container h2 {
        font-size: 1.5em;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-group input,
    .form-group select {
        font-size: 0.9em;
        padding: 8px 12px;
    }

    .continue-button-container {
        width: 90%;
        margin-top: 20px;
        justify-content: center;
    }

    .continue-button {
        padding: 10px 20px;
        font-size: 1em;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .information-cliente h1 {
        font-size: 2em;
    }

    .form-container h2 {
        font-size: 1.3em;
    }
}