* {
    padding: 0;
    margin: 0;
    font-family: "Poppins", 'Gill Sans', sans-serif;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(images/background.png);
    color: #f1f1f1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.box {
    margin-left: 100px;
}

.box h3 {
    font-weight: 400;
    font-size: 24px;
}

.box h1 {
    margin: 35px 0 10px;
    font-size: 40px;
}

.box p {
    font-size: 14px;
    margin-bottom: 50px;
}

.form {
    width: fit-content;
    background: #f1f1f1;
    display: flex;
}

.form input {
    width: 400px;
    height: 70px;
    flex: 1;
    margin-right: 5px;
    padding: 10px 20px;
    font-size: 16px;
    background: transparent;
    outline: none;
    border: none;
    border-radius: 4px;

}

.form button {
    width: 80px;
    background: #61b752;
    padding: 10px 0;
    height: 70px;
    outline: none;
    border: none;
    cursor: pointer;
}

.form button img {
    width: 30px;
}

span {
    color: #61b752;
    margin-top: 10px;
    display: block;
}