@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;900&display=swap');
body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    background: #ecf0f3;
    /* background-color: white; */
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    place-items: center;
    overflow: hidden;
    font-family: poppins;
    z-index: 0;
}

.container {
    position: relative;
    width: 700px;
    height: auto;
    border-radius: 20px;
    padding: 40px;
    box-sizing: border-box;
    background: #ecf0f3;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* background-color: white; */
    /* box-shadow: 14px 14px 20px #cbced1, -14px -14px 20px white; */
}

.screen-title {
    font-weight: 900;
    font-size: 3rem;
    color: #708fa8;
    letter-spacing: 1px;
}

#input-container {
    width: 30%;
    margin: 0 35% 0 35%;
    height: auto;
    /* background-color: white; */
}

.test-input {
    border: none;
    outline: none;
    display: inline-block;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 17.5px;
    margin: 5px 0 5px 0;
    background-color: #ecf0f3;
    box-shadow: inset 6px 6px 6px #cbced1, inset -6px -6px 6px white;
}

#input-button {
    margin-top: 10px;
    width: 100px;
    display: inline-block;
    background-color: #708fa8;
    color: white;
    border: none;
    height: 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 900;
    box-shadow: 6px 6px 6px #cbced1, -6px -6px 6px white;
    transition: 0.25s;
}

#input-button:hover {
    /* background: #425768; */
    background-color: #5b758a;
}