*{
    margin: 0;
    padding: 0;
    font-family:sans-serif;
}

.container{
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(243, 245, 249, 1);
      
}
.content-left{
    width: 25%;
    height: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}
.form{
    width: 100%;
    height: 100%;
    padding: 9px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.same{
    width: 80%;
    height: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 6px;
    font-size: 85%;
    font-family:sans-serif;
    color: #4E668E;
    padding-top: 1%;
    position: relative;

}

.fa-solid{
    position: absolute;
    bottom: 5px;
    left: 2px;
}

.same label{
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
}
.fa-solid fa-user{
    width: 15%;
    height: 2%;
    top: 18%;
}
.same input{
    outline: none;
    border-color: #104666;
    border-width: 1px;
    border-top: none;
    border-left: none;
    border-right: none;
    color: rgba(16, 70, 102, 1);
    padding: 1%;
    cursor:pointer;
    padding-left: 18px;
    
}

.same input:focus{
    border-color: rgb(54, 24, 54);
    border-width: 2px;
    border-left-width: 2px;
    color: rgb(8, 156, 242);
}
.submit{
     width: 80%;
     height: 10%;
     display: flex;
     justify-content: center;
     align-items: center;
}
.submit input{
    width: 35%;
    height:100%;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    margin-top: 20%;
    margin-left: -9px;
    color: #fff;
    background-color: rgba(78, 102, 142, 1);
    font-size: 110%;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 800;
}
h2{
    font-size: 130%;
    color: rgba(10, 54, 79, 1);
    font-family: 'Courier New', Courier, monospace;
    margin-top: -4%;
    margin-bottom: 12%;
}
.content-right{
    width: 25%;
    height: 75%;
}
.content-right img{
    width: 100%;
    height: 100%;
}

.pop-up{
    width: 15%;
    height: 40%;
    background-color: rgba(78, 102, 142, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    position: absolute;
    /* padding: 4% 0 0; */
    transform: translate(-50%,-50%) scale(1);
    visibility: hidden;
    padding: 0 30px 30px;

}

.open-popup{
    visibility: visible;
    position: absolute;
    bottom: 2rem;
    width: 25%;
    height: 50%;
    background-color: rgba(78, 102, 142, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 40%;
    left: 50%;
    /* padding: 4% 0 0; */
    transform: translate(-50%,-50%) scale(1);
    padding: 0 30px 30px;
}

.close-popup{
    visibility: hidden;
}


.pop-up img{
   width: 53%;
   height: 40%;
   /* visibility: hidden; */
   border-radius: 100%;
   box-shadow: 0 2px 5px rgba(0, 0,0,0.2);
   margin-top: -22%;
   padding-bottom: 0%;
}

.pop-content{
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* margin-top: -25px; */
    padding: -23px 70px 0;
}

.pop-content h3{
    font-size: 30px;
    font-family: sans-serif;
    padding: 30px 10px 10px;
}

.pop-content p{
    font-size: 20px;
    color: black;
    padding-bottom: 20px;
    padding: 4px;
    /* align-content: center; */
    margin-left: 15px;
    text-align: center;
}

.pop-content button{
    width: 95%;
    height: 39px;
    color: #fff;
    font-size: 120%;
    background-color: green;
    border: none;
    /* margin-bottom: -30%; */
}