@font-face {
    font-family: Cronos-Pro-Regular;
    src: url(../fonts/Cronos-Pro-Regular.otf) format("truetype");
    }

*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cronos-Pro-Regular";
}

body{
    transition: background-color .5s;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #23C0ED;
    background: -webkit-linear-gradient(top, #23C0ED, #0772BA);
    background: -o-linear-gradient(top, #23C0ED, #0772BA);
    background: -moz-linear-gradient(top, #23C0ED, #0772BA);
    background: linear-gradient(top, #23C0ED, #0772BA);
  }

.main{
    width: 40vw;
    height: 55vh;
    min-height: 450px;
    min-width: 300px;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 10px;
}

img{
    display: inline-block;
    width: 300px;

}



input[type=email], input[type=password]{
    display: block;
    margin: 10px 0;
    width: 25vw;
    min-width: 98%;
    border: 2px #23C0ED solid;
    border-radius: 5px;
    padding: 10px;
    color: #333;
}

select{
    display: block;
    margin: 10px 0;
    width: 25vw;
    min-width: 98%;
    border: 2px #23C0ED solid;
    border-radius: 5px;
    padding: 10px;
    color: #333;
}


button{
    background-color: #0772BA;
    color: #fff;
    padding: 10px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    width: 120px;
    font-weight: 700;
    margin-top: 5px;
    cursor: pointer;
}

.white{
    color: white;
}

.span{
    display: inline-block;
}

@media (max-width: 850px) {
img{
    width: 30vw;
}
}

@media (max-width: 500px) {
    img{
        width: 50vw;
    }
    }