img {
    height: 300px;
    margin-left: 130px;
}

body {
    font-family: Quicksand;
    background-color: #e1f5fe;
    /* Cor de fundo azul claro */
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #383f73;
    /* Cor do texto azul */
}

label {
    /* display: block; */
    /* margin-bottom: 20px; */
    font-weight: bold;
}

input,
select {
    width: 100%;
    padding: 10px 0px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}



/* button {
    width: 100%;
    padding: 15px;
    background-color: #ffca28;
    border: none;
    border-radius: 4px;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #ffa000;
} */

input[type="checkbox"] {
    width: 20px;
}

input[type="radio"] {
    width: 20px;
}

/* From Uiverse.io by adamgiebl */
.cssbuttons-io-button {
    background: #3747c2;
    color: rgb(255, 255, 255);
    font-family: inherit;
    width: 25%;
    margin: 0 auto;
    padding-left: 1.2em;
    font-size: 17px;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em hsl(233, 72%, 62%);
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
}

.cssbuttons-io-button .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em hsl(232, 34%, 33%);
    right: 0.3em;
    transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
    width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: hsl(232, 34%, 33%);
}

.cssbuttons-io-button:hover .icon svg {
    transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
    transform: scale(0.95);
}

input[type="checkbox"] {
    width: 20px;
}

input[type="radio"] {
    width: 20px;
}

.button-container {
    display: flex;
    justify-content: center;
    /* Centraliza horizontalmente */
}