* {
    padding: 0;
    margin: 0;
    box-sizing : border-box;
    outline: none;
    border: none;
}
body {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    background-image: url("./background.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: flex-end;
    min-height: 100dvh;
    background-color: #004080;
}
.quadro {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    background-color: #274891ce;
    backdrop-filter: blur(30px);
    border-radius: 15px;
    padding: 10px;
    width: 100%;
    max-width: 500px;
}
:root {
    --fonte: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.quadro input {
    font-family: var(--fonte);
    font-size: 18px;
    color: #fff;
    background-color: #002e85c7;
    padding: 20px 137px;
    border-radius: 10px;
    cursor: pointer;
    border: 0;
    box-shadow: rgb(0, 0, 0 / 5%) 0 0 8px;
    letter-spacing: 1.5px;
}
.quadro p {
    font-family: var(--fonte);
    font-size: 24px;
    color: #fff;
    text-align: justify;
    line-height: 1.5;
    margin: 10px 0 15px 0;
    background-color: #3b00c4e7;
    padding: 20px;
    border-radius: 10px;
    border: 0;
    box-shadow: rgb(0, 0, 0 / 5%) 0 0 8px;
    letter-spacing: 1.5px;
}