* {
    box-sizing: border-box;
}

body {
    background: #2782e3;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: #eee;
    min-height: 10rem;
    width: 32.5rem;
    border-radius: 4px;
    height: auto;
}

.heading {
    text-align: center;
    color: rgb(73, 70, 70);
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: .5rem .5rem 3rem rgba(0, 0, 0, .4);

}

.block {
    width: 10rem;
    display: inline-block;
    margin-left: .4rem;
    margin-top: 2rem;
    padding-left: 1.1rem;
}

.title {
    font-size: 1.2rem;
    text-align: left;
    font-weight: 700;
    color: #8b8484;
}

input[type=text] {
    width: 7.8rem;
    margin: auto;
    min-height: 2rem;
    border-radius: 3px;
    border-style: none;
    outline: none;
    font-size: 1.1rem;
    padding: .8rem 1rem;
    color: #8b8484;
}

input[type=text]:focus {
    border: 1.5px solid #8b8484;
    border-radius: 4px;
}

input[type=button] {
    width: 8rem;
    outline: none;
    border-style: none;
    border-radius: 3px;
    min-height: 2.3rem;
    background-color: #2782e3;
    margin-left: 35%;
    margin-block: 2.4rem;
    color: white;
    overflow: hidden;
    font-size: 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: block;
    line-height: 1.5;
    cursor: pointer;

}

input[type=button]:hover{
    background-color: #0b4d93;
    border-style: none;
    transform: translateY(-3px);
}

.age {
    display: block;
    overflow: hidden;
    font-size: 1.2rem;
    margin-bottom: 1.7rem;
    text-align: center; 
}



