*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.wrapper{
    width: 40%;
    height: 300px;
    border: 1px solid black;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 15px;
}

.input-wrapper{
    display: flex;
    gap: 5rem;
}

input{
    width: 150px;
    height: 35px;
}

button{
    width: 100px;
    height: 35px;
    background-color: rgb(17, 17, 201);
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: all 0.5s ease-out;
}

button:hover{
    background-color: rgb(8, 8, 109);
}

h1{
    color: rgb(32, 207, 149);
}

@media (max-width: 480px) and (min-width: 320px){
    .wrapper{
        width: 95%;
        height: 250px;
    }
    input{
        width: 150px;
        height: 35px;
    }
    button{
        width: 80px;
        height: 35px;
    }
    h2{
        font-size: 15px;
    }
    .input-wrapper{
        justify-content: space-between;
        gap: 2rem;
    }
}

@media (min-width: 481px) and (max-width: 767px){
    .wrapper{
        width: 80%;
        height: 250px;
    }
    input{
        width: 150px;
        height: 35px;
    }
    button{
        width: 80px;
        height: 35px;
    }
    h2{
            font-size: 17px;
        }
}
@media (min-width: 768px){
    .wrapper{
        width: 70%;
        height: 250px;
    }
    input{
        width: 150px;
        height: 35px;
    }
    button{
        width: 100px;
        height: 35px;
    }
    h2{
        font-size: 19px;
    }
}

@media (min-width: 1024px){
    .wrapper{
        width: 50%;
        height: 300px;
    }
    input{
        width: 150px;
        height: 35px;
    }
    button{
        width: 100px;
        height: 35px;
    }
}