.popup{
    height: 100vh;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 9999999999999;
    top: 0;
}

.insidePopup{
    height: 80%;
    width: 60%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.insidePopup form{
    width: 60%;
}

.insidePopup h2 {
    text-transform: uppercase;
    font-size: 45px;
    text-align: center;
    margin-bottom: 2rem;
}

.p1{
    display: none;
}

.contact-form label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

@media screen and (max-width:765px){
    .insidePopup {
        width: 90%;
    }
    .insidePopup h2 {
        font-size: 32px;
    }
    button#btnbtn {
        margin-top: 0rem;
    }
    .insidePopup form {
        width: 100%;
    }
}