/* *{
    display: flex;
    justify-content: space-around;
} */
input[type=text]{
    width: 50%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border-radius: 15px;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
    font-family: 'Bungee', cursive;
    display: block;
    margin: 0 auto;
    border-color: rgb(170, 9, 9);
}

input[type=password]{
    width: 50%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border-radius: 15px;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
    border-color: rgb(170, 9, 9);
}

button {
    text-align: center;
    font-size: 14px;
    font-family: sans-serif;
    cursor: pointer;
    padding: 5px;
    border-radius: 10px;
    background-color: rgb(170, 9, 9);
    color: bisque;
} 





@media only screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
}



.formLogIn{
    justify-content:space-around;
}

#App{
    display:flex;
    /* justify-content: center; */
    align-items: center;
   
}




#title{
    color:rgb(222, 197, 108);
    font-size: 32px;
    font-family: 'Bungee Shade', cursive;
    margin: 5px;
    padding: 5px;

}

#title:hover {
    animation: titleblink 1s infinite;
}







.logInField {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bungee', cursive;
    text-shadow: 1px 3px 5px rgb(170, 9, 9);
}

.registerField {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30em;
    font-family: 'Bungee', cursive;
    text-shadow: 1px 3px 5px rgb(170, 9, 9);
}

@keyframes titleblink {
    0% {
       color: rgb(222, 197, 108);
    }
    50% {
       color: rgb(253, 232, 153);
    }
    100% {
       color: rgb(222, 197, 108);
    }
}