*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: url(images/pic1.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* color: rgba(19, 230, 19, 0.719); */

}
.form-box{
    position: relative;
    width: 400px;
    height: 550px;
    border: 2px solid rgba(255,255,0.5);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-box h2{
    color: #fff;
    text-align: center;
    font-size: 32px;
}
.form-box .input-box{
    position: relative;
    margin: 30px 0;
    width: 310px;
    border-bottom: 2px solid #fff;
}
.form-box .input-box input{
    width: 100%;
    height: 45px;
    background: transparent;
    border: none;
    outline: none;
    padding: 0 20px 0 5px;
    color: #fff;
    font-size: 16px;
}
input::placeholder{
    color: #fff;
}
.btn{
    color: #fff;
    background: rgb(6, 61, 6);
    width: 100%;
    height: 50px;
    border-radius: 5px;
    outline: none;
    border: none;
    font-size: 17px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    cursor: pointer;
    box-shadow: 3px 0 10px rgba(0,0,0,.5);
}
.group{
    display: flex;
    justify-content: space-between;
}
.group span a{
    color: #fff;
    position: relative;
    top: 10px;
    text-decoration: none;
    font-weight: 500;
}
/* .group a:hover{
    text-decoration: underline  ;
} */
.group a:focus{
    text-decoration: line-through;
}

.input-box box-icon{
    position: absolute;
    color: white    ;
    top: 13px;
    right: 0;
}
#result{
    color: red;
    font-weight: 600;
    position: relative;
    top: 25px;
}
.popup{
    width:400px;
    background-color: #fff;
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    transition: transform .4s , top .4s;
    /* visibility: visible; */
    text-align: center;
    padding: 0 30px 30px;
    height: 330px;
    color: black;
    font-size: 1.8rem;
}
.popup box-icon{
   color: #063d06;
}
.popup button{
    width: 100%;
    background: rgb(6, 61, 6);
    padding: 10px 0;
    margin-top: 50px;
    border: none;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow:0 0 2px rgba(0,0,0,.1);
    color: white;
}
.open-slide{
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    /* visibility: visible; */
    display: block;
}