@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: rgba(118, 96, 96, 0.209);
}

.wrapper{
    width: 510px;
    background: white;
    border-radius: 10px;
}

.wrapper h1{
    font-size: 40px;
    text-align: center;
    font-weight: 500;
    padding: 20px 25px;
    border-bottom: 1px solid #b5b5b5;
}

.wrapper .content{
    margin: 25px 25px 35px;
}

.content .inputs{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.content .typing-input{
    z-index: -999;
    opacity: 0;
    position: absolute;
}

.inputs input{
    height: 57px;
    width: 56px;
    margin: 4px;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    background: none;
    border-radius: 5px;
    border: 1px solid #b5b5b5;
    text-transform: uppercase;
}

.inputs input:first-child{
    margin-left: 0px;
}

.content .details{
    margin: 20px 0 25px;
}

.details p{
    font-size: 19px;
    margin-bottom: 10px;
}

.content .reset-btn{
    width: 100%;
    cursor: pointer;
    outline: none;
    border: none;
    font-size: 20px;
    padding: 15px 0;
    border-radius: 5px;
    background: rgba(118, 96, 96, 0.209);
}

.wrapper .interrogation-btn{
    width: 10%;
    text-align: center;
    cursor: pointer;
    outline: none;
    border: none;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 40px;
    padding: 0px 0;
    border-radius: 10px;
    background: rgba(118, 96, 96, 0.209);
}

.popup .overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background: rgb(0, 0, 0, 0.7);
    z-index: 1;
    display: none;
}

.popup .close-btn {
    cursor: pointer;
    position: absolute;
    right: 5px;
    top: 10px;
    width: 30px;
    height: 30px;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    color: #222;
}

.popup.active .overlay{
    display: block;
}

.popup .conts {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%, -50%) scale(0);
    background: #fff;
    width: 550px;
    height: 220px;
    z-index: 2;
    text-align: center;
    text-align: justify;
    padding: 20px;
    box-sizing: border-box;
}

.popup.active .conts {
    transition: all 300ms ease-in-out;
    transform:translate(-50%, -50%) scale(1);
}
