@import url('https://fonts.googleapis.com/css2?family=Aladin&display=swap');
body{
    padding: 0;
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;font-family: 'Aladin', cursive;
}
nav{
    margin: 0;
    background: rgb(55, 165, 255);
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav a{
    margin-left: 10px;
    color: #fff;
    font-size: 20px;
}
form{
    margin: 50px;
    background: #fff;
    padding: 9px;
    border-radius: 8px;
    width: 60vw;
}
@media (max-width:1000px) {
    form{
        width: 80vw;
    }
}
fieldset{
    color: rgb(55, 165, 255);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
fieldset input{
    margin: 5px;
    width: 90%;
    height: max-content;
    border-radius: 7px;
    padding:9px;
    color: teal;
    font-size: 15px;
    border-color: rgb(39, 182, 163);
}
fieldset textarea{
    margin: 5px;
    width: 90%;
    height: max-content;
    border-radius: 7px;
    padding:9px;
    color: teal;
    font-size: 15px;
    border-color: rgb(39, 182, 163);
}
button{
    height: 40px;
    width: 200px;
    margin-top: 25px;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 17px;
    background: linear-gradient(90deg,rgb(14, 209, 24),rgb(5, 175, 138));
}