/* This Code is for the styling of the signIn page */
@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body{
    height: 100%;
    width: 100%;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: small;
    background-color: #e5e5f7;
    opacity: 1;
    background-image:  radial-gradient(#05668D 0.4px, transparent 0.4px), radial-gradient(#05668D 0.4px, #e5e5f7 0.4px);
    background-size: 16px 16px;
    background-position: 0 0,8px 8px;
}
a{
    text-decoration: none;
}
.nav{
    height: 7vw;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1vw 5vw;
}
span{
    color: #05668D;
}

.nav button{
    height: 3vw;
    width: 7vw;
    border: none;
    background-color: #05668D;
    color: white;
    border-radius: 1vw;
}
form{
    height: 40vw;
    width: 30vw;
    border: 2px solid rgb(175, 175, 175);
    margin: 1vw auto;
    border-radius: 2vw;
}
.formdata{
   text-align: center;
}
form label{
    margin-right: 15vw;
}
.form input{
    height: 3vw;
    width: 20vw;
    border-radius: 1vw;
    border: 0.2vw solid black;
    padding-left: 20px;
}

.form button{
    height: 3vw;
    width: 15vw;
    border: none;
    margin-top: 1vw;
    background-color: #05668D;
    color: white;
    border-radius: 1vw;
}
form{
    border: 0.05vw solid white;
    box-shadow: 0px 0px 2vw black;
}
button:hover{
    transform: scale(1.05);
}



/* The below Code is for the media query */

/* Extra Large devices */
@media (max-width:1025px){
    form{
        height: 50vw;
    }
}

/* Large Devices */
@media (max-width:767px){
    .nav{
        flex-direction: column;
    }
    form{
        height: auto;
        width: 40vw;
        margin-top: 5vw;
    }
    .form input{
        height: 3vw;
        width: 30vw;
    }
    .nav button{
        margin-top: 5vw;
        height: 3vw;
        width: 30vw;
    }
    .signbtn button{
        height: 3vw;
        width: 20vw;
        margin-bottom: 5vw;
    }


}

/* Medium devices */
@media (max-width:580px){
    form{
        margin-top: 30vw;
        margin-top: 20vw;
        width: 70vw;
    }
    .form input{
        width: 50vw;
        height: 5vw;
    }
    .nav button{
        margin-top: 5vw;
        height: 5vw;
        width: 40vw;
    }
    .signbtn button{
        height: 5vw;
        width: 30vw;
        margin-bottom: 5vw;
    }

}

/* Small devices */
@media (max-width:479px){
    h1{
        font-size: 5vw;
    }
    form{
        margin-top: 30vw;
        width: 80vw;
    }
    .form input{
        width: 60vw;
        height: 7vw;
    }
    .nav button{
        margin-top: 5vw;
        height: 7vw;
        width: 50vw;
    }
    .signbtn button{
        height: 7vw;
        width: 40vw;
        margin-bottom: 5vw;
    }
}

/* Extra Small devices */
@media (max-width:290px){
    form{
        margin-top: 30vw;
        width: 90vw;
    }
}
