* {
    padding: 0;
    margin: 0;
}

div,
input {
    box-sizing: border-box;
}

body {
    background: radial-gradient(#D1F2EE 10%, #fff 100%) no-repeat 100%;
    min-height: 100vh;
}

.circle-1 {
    width: 35vw;
    height: 35vw;
    background-color: #ECF0B9;
    position: fixed;
    left: -9vw;
    top: -11vw;
    border-radius: 50%;
    z-index: -1;
}

.circle-2 {
    width: 23vw;
    height: 23vw;
    background-color: #84A865;
    position: fixed;
    right: 0;
    transform: translateX(50%);
    top: 50vh;
    border-radius: 50%;
    z-index: -1;
}

.main {
    width: 100%;
    min-height: 100%;
    padding: 15vw 15vw 5vw;
}

.title {
    color: #509525;
    font-size: 6.5vw;
    text-align: center;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.submit {
    margin-top: 12vw;
    color: #868686;
    background: linear-gradient(to right, #E4EB95, #A3C72A);
    line-height: 1.6;
    font-size: 6vw;
    text-align: center;
    border-radius: 5vw;
}