

.h{
    text-align: center;
    margin-top: 15px;
    font-size: 25px;
}

.form-popup {
    display: none; /* Initially hidden */
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-top: 2rem;
    z-index: 9;
    border-radius: 20px; 
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
   
    
}
.txt{
    font-size: 18px;
    color: black;
}
.form-container {
    border-radius: 20px;
    padding: 20px;
    max-height: 80vh; /* Control height of content inside the form */
    overflow-y: auto; /* Enable scrolling inside the contai ner */
    
}

.form-container input[type="text"],
.form-container input[type="tel"],
.form-container textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px 0;
    background-color:rgb(238, 238, 238) ;
    font-size: 17px;
   color: black;
   font-weight: bold;
   
   
}

.form-container textarea {
    height: 100px;
    resize: none;
}

.form-container .btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 17px;
    font-weight: bold;
}

.form-container .cancel {
    background-color: red;
}

.form-container .btn:hover {
    opacity: 1;
}