/* Backend Styles */
.pa-admin-page .pa-heading {
    color: #01A0DB;
}

.pa-admin-page .pa-button {
    background-color: #01A0DB;
    border-color: #01A0DB;
    color: #fff;
}

.pa-admin-page .pa-button:hover {
    background-color: #0084C4;
    border-color: #0084C4;
}

/* Frontend Styles */
.pa-frontend-form label {
    display: block;
    margin-bottom: 10px;
    color: #01A0DB;
}

.pa-frontend-form input[type="text"]{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat';
}

.pa-frontend-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat';
}

.pa-frontend-form .pa-button {
    background-color: #9F0A0C;
    border-color: #01A0DB;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.pa-frontend-form .pa-button:hover {
    background-color: #0084C4;
    border-color: #0084C4;
}

.pa-success-message {
    color: #01A101;
    font-weight: 600;
    
}

.pa-error-message {
    color: #FF0000;
}

/* Style for the popup */

        .pa-modal {
            display: none; 
            position: fixed;
            z-index: 999; 
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 3, 0.85); 
            justify-content: center;
        }

        .pa-modal-content {
            background-color: #000 !important;
            align-content: center;
            top: 50%;
            left: 40%;
            padding: 50px;
            border: 1px solid #888;
            width: 80%;
            height: 250px;
            max-width: 400px;
            text-align: center;
            position: relative;
            border-radius: 5px !important;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
        
        }

        .pa-close {
            color: #fff;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            position: absolute;
            right: 10px;
            top: -5px;
        }

        .pa-close:hover,
        .pa-close:focus {
            color: #fff;
        }

        /* Icon styles */
        .pa-modal-icon {
            font-size: 30px;
            color: #fff; /* Your preferred color #01A0DB */
            margin-bottom: 20px;
          
        }
        
        .pa-frontend-form label{
        	display: none;
        }
        
        .pa-frontend-form input[type="email"] {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        	background-color: #fff;
            font-weight: 500;
        }
        .pa-frontend-form input[type="text"] {
            background-color: #fff;
            font-weight: 500;
        }
        
        input::placeholder {
            text-transform: capitalize;
            font-weight: 400;
        }
        
        p#pa-modal-message {
        font-family: 'open sans';
        font-weight: 600;
        line-height: 1.7em;
        font-size: 14px;
        padding: 20px;
        color: #000;
    }
        
        @media only screen and (max-width: 768px) {
        .pa-modal-content {
            left: 10% !important;
        	}
        }
        



