body{
    font-family: 'mikhak';
}
.continer{
    position: relative;
    width: 24rem;
    height: 50rem;
    background-color: #d3d2d2;
    border-radius: 8px 8px 0px 0px;
    margin: 0 auto;
}
.textWelcome{
    width: 100%;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgb(148, 84, 255), rgb(123, 0, 255));
    font-size: 1.5rem;
    border-radius: 8px 8px 0px 0px;
}
.input-checkbox{
    position: absolute;
    margin-top: 2rem;
    display: grid;
    justify-content: center;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
}
.input-checkbox input{
    margin-top: 8px;
    outline: none;
    border: none;
    padding: 0.6rem;

}
.checkbox{
    margin-top: 2rem;
}
.checkbox div{
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 1px solid black;
    cursor: pointer;
    transition: 0.3s;
}
.checkbox span{
    position: absolute;
    margin-right: 5px;
    width: 110%;
    margin-top: -0.25rem;
    cursor: pointer;
}
.checkbox div:not(.humberValid){
    margin-bottom: 0.5rem;
}
.result{
    position: relative;
    text-align: center;
    border: 1px solid black;
    border-radius: 5px;
    padding: 0.5rem;
    margin-top: 3rem;
}
label{
    text-align: center;
}
.error-leng{
    color: red;
}
.copy{
    position: absolute;
    background-color: rgb(148, 84, 255);
    width: 100%;
    height: 2rem;
    margin-top: 30rem;
    transition: 0.3s;
    text-align: center;
    padding: 0.3rem;
    border-radius: 5px;
    cursor: pointer;
}
.copy:hover{
    background-color: rgb(123, 0, 255);
    transition: 0.3s;
}