@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;500;600;700&display=swap');

body {
    min-height: 100vh;
    margin: 0;
    background-color: #FFFFFF;
    font-family: 'Arimo', Arial, sans-serif;

    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1,
h2,
h3 {
    color: #4B8DD4;
}

header {
    display: flex;
    align-items: left;
    padding: 10px;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    background-color: #F0F0F0;
    height: 50px;
    justify-content: center;
}

.form-container {
    margin: 40px 0;
    padding: 48px 80px;
    width: 100%;
    max-width: 760px;

    border-radius: 18px;
    background-color: #F0F0F0;

    display: flex;
    flex-direction: column;
    align-items: center;
}


.form-container h1 {
    margin: 0 0 40px 0;

    font-size: 56px;
    font-weight: 700;
    color: #4B8DD4;
    text-align: center;
}


.form-group {
    margin-bottom: 25px;
    width: 100%;
    border: 0;
    padding: 0;
}

.form-field,
.checkbox-group,
.radio-group {
    width: 100%;
    margin-bottom: 16px;
}

.checkbox-group,
.radio-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group input,
.radio-group input {
    flex: 0 0 auto;
}

.linha-quantidade {
    display: flex;
    gap: 12px;
}

.linha-quantidade input,
.linha-quantidade select {
    flex: 1;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

legend {
    color: #4B8DD4;
    font-weight: 700;
    margin-bottom: 16px;
}

.form-subtitle {
    width: 100%;
    margin: 20px 0 12px;
    color: #4B8DD4;
    font-weight: 700;
}

label {
    margin-bottom: 6px;
    font-weight: 500;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
textarea,
select {
    width: 100%;
    height: 50px;

    box-sizing: border-box;

    border: none;
    outline: none;
    border-radius: 15px;

    background-color: #FFFFFF;

    padding: 0 15px;

    font-size: 16px;
    font-family: 'Arimo', Arial, sans-serif;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;

    margin-right: 8px;
    cursor: pointer;
}

input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

input::placeholder,
textarea::placeholder {
    color: #777;
}


.form-container button {
    background-color: #4B8DD4;
    color: white;

    border: none;
    border-radius: 25px;

    padding: 0 28px;
    height: 50px;

    font-size: 16px;
    font-family: 'Arimo', Arial, sans-serif;

    cursor: pointer;
}


.form-container>button {
    margin-top: 62px;
}


.logo {
    width: 120px;
    height: auto;
}


#descricao-ong {
    min-height: 100px;
    padding-top: 20px;
}

.footer{
    color: white;
    text-align: center;
    align-content: center;
    background-color: #61AAE5;
    height: 100px;
    flex-direction: column;
    flex: 1;
    width: 100%;
    min-width: 100vw;
}