body{
    margin: 0;
    padding: 0;
    font-family: 'Inria Serif', serif;
    font-size: 1em;
    color: #000;
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 50% 0;
    backdrop-filter: saturate(0.5);

}
a{
    text-decoration: none;
    color: rgb(1, 1, 54);
    font-style: italic;
}
a:hover,a:visited{
    color: rgb(74, 74, 169);
    font-weight: 400;
}
.header{
    display: flex;
    flex-direction: row;
    align-self: center;
    align-items: center;
}
nav > ul{
    display: flex;
    flex-direction: row;
    list-style-type:none;
}
nav > ul > li{
    padding: .2rem;
    margin-left: 1rem;
}
.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.concurs_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.concurs.head{
    display: flex;
    justify-content: center;
    margin-bottom: 0.2rem;
    font-size: 1.4em;
    font-weight: 700;
    font-style: italic;
}
.concurs_form{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    /* border-radius: 1rem; */
    /* padding: 2rem; */
    /* background-color: rgba(180, 180, 180, 0.205); */
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.69); */
}
.concurs_form>form{
    display: flex;
    flex-direction: column;
    width: 80%;
}
.form-items{
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    padding: .5rem 2rem;
    background-color: rgba(180, 180, 180, 0.205);
    box-shadow: 2px 1px 2px rgb(125 125 125), 2px 1px 3px rgba(82, 79, 79, 0.854), 2px 3px 3px rgba(106, 107, 106, 0.808);
}
.form-items>input,
.form-items>textarea{
    width: 100%;
    border-radius: .5rem;
}
.form-missing{
    animation: anim-error 1.5s linear infinite;
    /* color: rgb(247, 170, 56); */
    border-radius: .2rem;
    padding: .3rem 2rem;
    font-size: 1.2rem;
    align-self: flex-start;
}
legend{
    font-size: 1.2em;
    font-weight: 700;
    font-style: italic;
    padding: 1em;
}
fieldset{
    border: 2px solid #afafaf;
}
.form-element{
    font-size: 1rem;
    line-height: 1rem;
    position: relative;
    width: 100%;
    height: 3rem;
    overflow: hidden;
    margin-bottom: 4px;
}
.form-label{
    font-size: 1.2rem;
    align-self: flex-start;
    padding: 0 .3rem .5rem 0;
    /* display: none; */
}

input:focus{
    padding-left: 8px;
    border: none;
    box-shadow: 2px 1px 2px rgb(125 125 125), 2px 1px 0px rgba(82, 79, 79, 0.854), 1px 3px 3px rgba(106, 107, 106, 0.808);
} 

input[type=text],input[type=tel],input[type=password],input[type=email],input[type=date]{
    width: 100%;
    line-height: 1.5em;
    background-color: rgba(255, 136, 0, 0.5);
    border: none;
}
input::placeholder{
    padding-left: .5rem;
    color: rgb(0, 0, 0);
}
.selector{
    box-shadow: 2px 1px 2px rgb(125 125 125), 2px 1px 0px rgba(82, 79, 79, 0.854), 1px 3px 3px rgba(106, 107, 106, 0.808);
    /* width: 50%; */
}
@keyframes shine {
    to {
      background-position: 200% center;
    }
}
@keyframes anim-error {
    0% {
        background-color: rgb(64, 64,64);
        color:rgb(247, 170, 56);
    }
    50% {
        color:rgb(64, 64, 64);
        background-color: rgb(247, 170, 56);
    }
    100% {
        background-color:rgb(64, 64, 64);
        color: rgb(247, 170, 56);
    }
  }

@keyframes cancel-btn {
    0% {
        background-color: rgb(108, 107, 107);
        color: rgb(230, 230, 230);
    }
    100% {
        background-color: rgb(2239, 239, 239);
        color:rgb(1, 1, 54);
    }
}