@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*, *:before, *:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background: #f0e0e0;
}

.container{
    width: 40%;
    min-width: 450px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    padding: 50px 30px;
}

.container *{
    font-family: 'Poppins', sans-serif;
    border: none;
    outline: none;
}

.wrapper-in{
    background-color: #084602;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 15px 20px rgba(0,0,0,0.3);
    margin-bottom: 50px;
}

input, button{
    height: 50px;
    background-color: #fff;
    color: #080808;
    font-weight: 500;
    border-radius: 5px;
}

input{
    width: 60%;
    padding: 0 20px;
    font-size: 14px;
}

button{
    width: 30%;
    float: right;
}

.wrapper-out{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.wrapper-out div{
    height: 100px;
    width: 100px;
    background-color: #034d07;
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: 5px;
    padding: 20px 0;
    box-shadow: 0 15px 20px rgba(0,0,0,0.3);
}

span{
    font-size: 30px;
    font-weight: 500;
}

p{
    font-size: 14px;
    color: #d1cfcf;
    font-weight: 400;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    text-align: center;
    padding: 10px 0;
    font-family: 'Courier New', Courier, monospace;
}

footer p {
    color: white !important;
}


