* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

.content {
    background-color: #2f97ff;
    height: 750px;
    width: 1200px;
    border-radius: 80px;
    box-shadow: 0 0 30px #1c8eff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.text-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

.text-box-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.text-box {
    height: 90px;
    width: 350px;
    font-size: 35px;
    padding: 10px;
    text-align: center;
    border: 4px solid #007af3;
    border-radius: 20px;
    background-color: white;
    color: #989898;
}

::placeholder {
    color: #989898;
}

.sample-text {
    color: white;
    font-size: 20px;
    margin-top: 8px;
    font-weight: bold;
}

.button-container {
    margin-top: 20px;
}

.btn {
    height: 90px;
    width: 1070px;
    border: none;
    border-radius: 20px;
    background-color: #0b85ff;
    font-size: 35px;
    color: white;
    cursor: pointer;
}

.btn:hover {
    background-color: #007af3;
}

.age-text-container {
    position: absolute;
    top: 180px;
}

.age-text {
    font-size: 40px;
    color: white;
    font-weight: bold;
}