
h1{
    text-align: center;
    font-size: 70px;
    color: rgb(107, 106, 105);
}
#form {
    width: 60%;
    margin: auto;
    /* box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset; */
    text-align: center;
    padding: 10px;
    margin-top: 100px;
}
#form input {
    width: 500px;
    height: 55px;
    margin-top: 20px;
    border-radius: 5px;
    font-size: 33px;
}
#hname{
    padding-top: 15px;
}
#form ::placeholder {
    font-size: 35px;
    color: grey;
}
#form button {
    color: rgb(255, 255, 255);
    background-color: rgb(255, 0, 0);
    padding-inline: 10px;
    border-radius: 5px;
    font-size: 32px;
    font-weight: 600;
    border-color: red;
    margin-top: 30px;
}
#form p{
    font-size: 30px;
}
.popup{
    width: 400px;
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%) scale(0.1);
    text-align: center;
    padding: 0 30px 30px ;
    color: rgb(73, 71, 71);
    visibility:hidden ;
    font-size: 20px;
    transition: transform 0.4s,top 0.4s;
    background-color:rgb(228, 223, 223) ;
}
.open-popup{
    visibility: visible;
    top:50%;
    transform: translate(-50%,-50%) scale(1);

}
.popup img{
    width: 100px;
    /* margin-top: -px; */
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2) ;
}
.popup h2{
    font-size: 38px;
    font-weight: 500;
    margin: 30px 0 10px;

}
.popup button{
    width: 100%;
    margin-top:50px;
    padding: 10px 0;
    background:#6fd649;
    color: #fff;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2) ;
}