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

body {
    height: 100vh;
    background: linear-gradient(#478d5a, #0cd943 50%, #ffffff 50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background-color: rgb(233, 216, 216);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 30px black;
    width: 350px;

}

h1 {
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 25px;
}

h2 {
    font-size: 20px;
    font-weight: bold;
}

input {
    padding: 15px;
    width: 300px;
    border: 1px solid grey;
    border-radius: 30px;
}

