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

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

body {
    background: #e5d3b3;
}

.bg {
    position: absolute;
    height: 50vh;
    width: 100vw;
    background: #e5d3b3;
}

.wrapper {
    font-size: 1.2em;
    width: 25em;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    background-color: #fff;
    border-radius: 0.5em;
    border-radius: 0.5em;
    padding: 4em 2em;
    box-shadow: 0 1.25em 2.5em rgba(18, 0, 76, 0.15);
}

.container {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.fa-solid {
    font-size: 1.5em;
    color: darkgray;
}

.number {
    display: block;
    text-align: center;
}

#submit {
    display: block;
    position: relative;
    background: #d16d15;
    border: none;
    padding: 0.5em 1em;
    color: #fff;
    font-size: 1em;
    border-radius: 2em;
    margin: 1em auto 0 auto;
    cursor: pointer;
}

#submit:disabled {
    cursor: not-allowed;
}

#message {
    text-align: center;
    margin-bottom: 2em;
    font-size: 1.3em;
}

#submit-section {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #fff;
    top: 0;
    left: 0;
    place-items: center;
    border-radius: 0.5em;
}

#submit-message {
    margin-top: 150px;
    text-align: center;
}

.hide {
    display: none;
}