@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

*{
    font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
}

form{
    display: flex;
    flex-direction: column;
    width: 325px;
    height: 400px;
    background-color: aliceblue;
    border-radius: 15px;
    padding: 30px 20px;
    justify-content: center;
    align-items: center;
}

form input{
    margin: 10px 0px;
    font-size: 16px;
    padding: 6px 12px;
    border-radius: 8px;
    border: none;
    color: black;
}

select, button{
    margin: 10px 0px;
    font-size: 16px;
    width: 225px;
    padding: 6px 12px;
    border-radius: 8px;
    border: none;
    color: black;
}

form a, form button{
    text-decoration: none;
    background-color: aquamarine;
    border-radius: 15px;
    font-weight: bold;
    padding: 8px 25px;
    color: black;
    transition: all .35s;
    outline: none;
    border: none;
    cursor: pointer;
}

form a:hover, form button:hover{
    scale: 1.1;
}

span{
    font-size: 12px;
    color: gray;
    padding-bottom: 15px;
}

.dupli{
    text-align: center;
    width: 500px;
    height: 200px;
}

.dupli select{
    width: 400px;
}