#ctn-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    justify-content: center;
    align-items: center;
    padding: 10px;
    
}

#ctn-form .form-container {
    background: white;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#ctn-form .form-container h2 {
    text-align: center;
}

#ctn-form .form-container label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;  /* Make the labels bold */
    color: #333;  /* Darken the color for better contrast */
    letter-spacing: 1px !important;
}

#ctn-form .form-container input,
#ctn-form .form-container select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Target buttons inside the form-container */
#ctn-form .form-container button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #074793;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#ctn-form .form-container button:hover {
    background-color: #1159b1;
    transform: scale(1.02);
}

#ctn-form .form-container button#close-btn {
    background-color: #dc3545;
    margin-top: 5px;
}

#ctn-form .form-container button#close-btn:hover {
    background-color: #c82333;
    transform: scale(1.02);
}

@media (max-width: 768px) {
  
    #ctn-form {
        width: 100%;
        height: 100%;
        display: none;
    }

    #ctn-form .form-container {
        width: 100%;
        padding: 15px;
    }
}
