@import url('https://fonts.googleapis.com/css2?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&family=Victor+Mono:ital,wght@0,100..700;1,100..700&display=swap');

*{
    margin:0%;
    padding:0%;
    box-sizing:border-box;
    font-family: 'Poppins';
}

html,body{
    height: 100%;
    width: 100%;
    background-image: url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?q=80&w=1256&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    color: rgb(114, 238, 238);
    display: flex;
    justify-content: center; 
    align-items: center;
}
.main{
    flex-basis: 40%;
    background: rgba(0, 0, 0, 0.7);
    margin-top: 40%;
    
}
.main form h1{
    font-size:3rem;
}
.main form{
    padding: 2%;
    margin-top: 10%;
    text-align: center;

}
.form-outer label{
    display: block;
}
.form-outer input{
    width: 90%;
    height: 5vh;
    border-radius: 1cap;
}
.main button{
padding: 2% 2%;
margin-top: 10%;
width: 50%;
justify-content: center;
background-color: rgb(79, 133, 220);
border-radius: 2cap;
color: white;
cursor:pointer;
}
.main button:hover{
    background-color: rgb(78, 78, 245);
    font-weight: bold;
}
@media screen and (max-width: 700px) {
     .main {
        flex-basis: 80%;
        margin-top: 5%;
        padding: 5%;
     }

    .main form h1 {
        font-size: 2rem;
        text-align: center;
        margin-top: 20vh;
    }
    .main form{
        padding: 2%;
        text-align: center;
    
    }
    .form-outer input,
    .form-outer select,
    .form-outer textarea {
        width: 100%;
        height: 4vh;
    }
    .form-outer label{
        display: block;
        font-size: 0.80rem;
    }
    .main button {
        width: 100%;
        margin-top: 10%;
        font-size: 1rem;
        padding: 1%;
    }
}
@media screen and (max-width: 480px) {
    .main form h1 {
        font-size: 2rem;
        text-align: center;
        margin-top: 10vh;
    }
}