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

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

.img-logo {
    height: 200px;
    width: 300px;
    margin: 70px auto;
}

h2 {
    font-style: normal;
    font-weight: 400;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 38px;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 15px;
}

input {    
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 14px;
    height: 35px;
    width: 200px;
    padding-left: 20px;
    font-weight: 500;
    font-size: 24px;
    line-height: 47px;
    color: #FFFFFF;
    opacity: 0.7;
}

.input-max {
    margin-left: 20px;
}

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