@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&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #159957;
}

.login-form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.login-form h1 {
    color: white;
    font-size: 5.5em;
    font-weight: bold;
    font-family: Poppins;
}

.login-form form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 80%;
}

.login-form form label {
    font-size: 2.5em;
    color: white;
    font-family: Poppins;
}

.login-form form input {
    outline: none;
    border: none;
    font-size: 2.5em;
    height: 100px;
    color: white;
    padding: 0 5px 0 5px;
    background: none;
    border-bottom: 1px #ffffff solid
}

.login-form form input[type=submit] {
    background: white;
    color: black;
    font-size: 2.5em;
    font-weight: bold;
    border-radius: 50px;
}