* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

body {
    background: #C9C59F;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#limpa {
    align-items: flex-end; 
    float: right;
    margin-top: 22px;
}


.container {
    background: rgb(255, 242, 209);

    border-radius: 14px;
    margin: 14px;
    max-width: 600px;
    width: 100%;
    /* box-sizing: 0 3px 5px rgba(0,0,0,0.5); */
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px #00000059;
    -webkit-box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.35);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, rgba(163, 237, 216, 1) 0%, rgba(167, 210, 198, 1) 48%, rgba(83, 193, 161, 1) 100%);
    color: white;
    padding: 24px;
}

div>img {
    display: flex;
    margin-right: 30px;
    align-items: center;

    /* float: left; */
}

div>h2,
div>h3 {
    /* display: flex; */
    text-align: right;
}

.form {
    padding: 18px;

}

.form-group {
    display: flex;
}

.flex {
    width: 50%;
}

.mr {
    margin-right: 8px;
}

.ml {
    margin-left: 8px;
}

.mt-30 {
    margin-top: 30px;
}

.form-content {
    margin-bottom: 8px;
    padding-bottom: 8px;
    position: relative;
}

.form-content label {
    display: inline-block;
    margin-bottom: 4px;
}

.form-content input {
    display: block;
    width: 100%;
    border-radius: 8px;
    padding: 8px;
    border: 2px solid #808080;
}

.form-content input[type="date"] {
    width: 200px;
}


.form-content a {
    position: relative;
    display: none;
    /* visibility: hidden; */
}

.form-content.erro a {
    color: #ff3b25;
    display: block;
    /* visibility: visible; */
}

.form-content.valid a {
    color: #38e619;
    display: block;
    /* visibility: visible; */
}

.form-content.erro input {
    border-color: #ff3b25;
}

.form button {
    background-color: #00c3ff;
    color: #fff;
    width: 100%;
    border-radius: 14px;
    padding: 10px;
    border: 0;
    font-size: 18px;
    cursor: pointer;
    margin-top: 14px;
}

.form button:hover {
    background-color: #0eaa88;
}

#blur {
    filter: none;
    
}

#blur.active {
    filter: blur(10px);
    animation: blur .3s ease-in;
}

#popup {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
    background: #55C1A2;
    border-radius: 8px;
    z-index: 99;
}

#popup > span {
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #A6DBCC;
    
}

#popup.show {
    display: flex;
}

.dots {
    margin: 50px;
    justify-content: center;
    text-align: center;
}

div .dots span{
    position: absolute;
    height: 10px;
    width: 10px;
    background: #fff;
    border-radius: 50%;
    transform: rotate(calc(var(--i) * (360deg / 15))) translateY(35px);
    animation: animate-ball 1.5s linear infinite;
    animation-delay: calc(var(--i) * 0.1s);
    opacity: 0;
}

@keyframes animate-ball {
   0%{
     opacity: 1;
   }
   100%{
     opacity: 0;
   }
}

@keyframes blur {
    0%{
        filter: none;
    }
    100%{
        filter: blur(10px);
    }
}



@media screen and (max-width: 600px) {

    div>h2,
    div>h3 {
        font-size: 0.9rem;
        margin-right: 15px;
    }

    div>img {
        transform: scale(0.7);
    }

    .header {
        padding: 8px;
    }

    .form-group {
        display: block;
    }

    .flex {
        width: 100%;
        margin-left: 0px;
    }

}

/* 
.child {
    padding: 150px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgb(193, 255, 255), rgb(135, 200, 200));
    border: none;
    border-radius: 20px;
    opacity: 0;
    animation: show_box 0.5s cubic-bezier(0.65, 0.05, 0.36, 1) forwards;
    animation-delay: 1s;
}

.field {
    width: 100%;
    position: relative;
    margin-bottom: 50px;
}

.field:last-child {
    margin-bottom: 0;
}

.campo {
    height: 2.5em;
    width: 100%;
    display: block;
    padding: 5px;
    margin-top: 5px;
    border: none;
    background: transparent;
    border-bottom: 1px solid rgb(191, 184, 168);
    font-size: 1em;
    font-weight: 400;
    transition: 1s ease all;
}

form {
    width: 400px;

}

input:focus {
    outline: none;
}


label {
    width: 100%;
    font-size: 1em;
    color: darkgrey;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;

}

input:focus~label,
input:valid~label {
    left: 0;
    top: -15px;
    font-size: 0.8em;
    color: teal;
}

/* EFEITO BARRA CRESCENDO A PARTIR DO CENTRO */

/* .bar {
    position: relative;
    display: block;
    width: 100%;
}

.bar:before,
.bar:after {
    content: '';
    height: 3px;
    width: 0;
    bottom: 0px;
    position: absolute;
    background: teal;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar:before {
    left: 50%;
}

.bar:after {
    right: 50%;
}

input:focus~.bar:before,
input:focus~.bar:after {
    width: 50%;
} */

/* EFEITO DE HIGHLIGHT */

/* .highlight {
    position: absolute;
    height: 60%;
    width: 100%;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

input:focus~.highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
} */

/* KEYFRAMES */

/* @-webkit-keyframes inputHighlighter {
    from {
        background: teal;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: teal;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: teal;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes show_box {
    from {
        transform: translateY(150px);
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}  */