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

* {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    background: #000000;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    line-height: 38px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 126px;
}

input {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    height: 74px;
    width: 342px;
    padding-left: 20px;
    font-weight: 500;
    font-size: 20px;
    line-height: 47px;
    color: #FFFFFF;
    opacity: .7;
}

.input-min {
    margin-right: 62px;
}

button {
    background: #AEC346;
    box-shadow: 0px 18px 40px rgba(174, 195, 70, 0.35);
    border-radius: 10px;
    height: 72px;
    width: 342px;
    color:#FFFFFF;
    font-weight: 700;
    font-size: 36px;
    margin-top: 80px;
    margin-bottom: 30px;
    border: none;
    cursor: pointer;
}

button:hover {
    opacity: .9;
}

button:active {
    opacity: .8;
}

img {
    height: 400px;
}

@media screen and (max-width: 755px) {
    h2 {
        font-size: 40px;
        margin-top: 50px;
    }

    .input-min {
        margin-right: 0;
        margin-bottom: 20px;
    }

    img {
        height: 350px;
    }
}

@media screen and (max-width: 690px) {

    input {
        display: flex;
        margin: 0 auto;
    }

}