/* Apply a light background, border, and padding to the form */
form[id^="custom-form-"] {
    margin-top:32px;
    max-width: 600px;
}

.form-header {
    font-size: 20px;
    font-weight: bold;
    color: var(--e-global-color-text);
    margin-bottom: 16px;
}

.form-text {
    font-family: "Manrope", Sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 27px;
    color: var(--e-global-color-text);
    margin-bottom:16px;
}

.updated {
    margin-top:32px;
    padding: 12px;
    background-color: #e6f7e6; 
    border-left: 5px solid #28a745; 
    color: #155724; 
    font-size: 17px;
    font-weight: 500;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sora';
}

.updated p {
    margin-bottom:0px;
}

.updated::before {
    content: "✔"; /* Ícone de check */
    font-size: 20px;
    color: #28a745;
}

/* Style the labels */
form[id^="custom-form-"] label {
    display: block;
    margin-bottom:12px;
    font-weight: 700;
    color: #000;
    font-size: 17px;
    font-family: 'Manrope';
    line-height:27px;
}

/* Style text inputs, textarea, and select elements */
form[id^="custom-form-"] input[type="text"],
form[id^="custom-form-"] input[type="email"],
form[id^="custom-form-"] input[type="number"],
form[id^="custom-form-"] input[type="date"],
form[id^="custom-form-"] input[type="time"],
form[id^="custom-form-"] input[type="datetime"],
form[id^="custom-form-"] input[type="password"],
form[id^="custom-form-"] input[type="hidden"],
form[id^="custom-form-"] textarea,
form[id^="custom-form-"] select {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

/* Style the buttons */
form[id^="custom-form-"] button[type="submit"],
form[id^="custom-form-"] button[type="button"] {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    margin-right: 10px;
}

/* Change button background on hover */
form[id^="custom-form-"] button[type="submit"]:hover,
form[id^="custom-form-"] button[type="button"]:hover {
    background-color: #005177;
    text-decoration:underline;
}

.quote_field {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 32px;
    margin-top: 16px;
}

.quote_field input {
    border: 0px solid!important;
    border-bottom: 1px solid #8c8ca2!important;
    border-radius: 0px!important;
    padding: 0px!important;
    margin-bottom: 0px!important;
    display: inline-block;
    width: auto!important;
    min-width: 120px;
    outline: none;
    font-size: 18px;
    text-align: center;
    background: transparent;
}

.form_actions {
    margin-top:16px;
}

.nobold {
    font-weight:400;
}
