*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: black;
    color: cornflowerblue;
    font-size: 1.1rem;
}

.main{
    max-width: 700px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    margin: 3rem auto;
    justify-content: center;
    align-items: center;
    border: 2px solid cornflowerblue;
    border-radius: 5px;
    padding: 2rem;
    box-shadow: 2px 2px 13px cornflowerblue;
}

h1{
    font-size: 50px;
    color: cornflowerblue;
}

.mailForm{
    padding: 1rem 0;
    width: 80%;
}

.field{
    display: flex;
    flex-direction: column;
    padding: 6px 0;
}

label{
    font-size: 1.3rem;
    min-width: 200px;

}

input, textarea{
    height: 50px;
    min-width: 200px;
    height: 50px;
    border-radius: 6px;
    padding: 10px;
    font-size: 1.2rem;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid cornflowerblue;
    outline: none;
    background: #212121;
    color: white;
}

textarea{
    height: 120px;
}

input:is(:hover, :focus), textarea:is(:hover, :focus){
    border: 2px solid cornflowerblue;
    background-color: #121212;
    box-shadow: 2px 2px 15px cornflowerblue;
}

::placeholder{
    color: rgb(87, 133, 232);
}
.submitBtn{
    text-align: center;
    margin-top: 1rem;
}
.btn{
    height: 50px;
    width: 50%;
    font-size: 1.3rem;
    min-width: 200px;
    max-width: 300px;
    background: cornflowerblue;
    border-radius: 6px;
    margin: auto;
    padding: 10px;
    cursor: pointer;
    transition: all .2s ease-in linear;
}

.btn:is(:hover, :focus){
    background-color: black;
    color: white;
    border: 2px solid cornflowerblue;
    transform: scale(1.03);
    box-shadow: 1px 1px 10px cornflowerblue;
}

.info{
    color: white;
    margin-top: 10px;
    font-size: 19px;
    display: none;
}
.loading{
    text-align: center;
    color: yellow;
    display: none;
    animation: load 1.6s infinite alternate;
}

.logo{
    height: 92px;
    width: 92px;
    border-radius: 50%;
    filter: drop-shadow(0 0 30px lightblue);
}

@keyframes load {
    0%{
        color: rgb(207, 32, 90);
        transform: scale(.6) translateX(60px);
    }
    100%{
        opacity: 1;
        transform: translateX(-60px);

    }
}

