.concil-auto-modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(173, 143, 255, 0.9); 
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.concil-auto-modal.visible {
    opacity: 1;
}

.modal-content {
    background-color: #191919;
    margin: 15vh auto;
    padding: 30px;
    border: none;
    width: 90%; 
    max-width: 480px;
    border-radius: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    position: relative;
    /* text-align: center; */
    color: #f4f2ef; 
    font-family: Arial, sans-serif;
}

.modal-content h2 {
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 15px;
    color: #f4f2ef;
    line-height: 1.2;
}

.modal-content p {
    font-size: 1em;
    margin-bottom: 25px;
    line-height: 1.5;
    color: #f4f2ef;
}

.concil-auto-modal .modal-content .form #nf-form-2_1-cont {
    border: none;
}

.concil-auto-modal .modal-content .form .nf-before-form-content {
    display: none;
}

.concil-auto-modal .modal-content .form .ninja-forms-req-symbol {
	color: #fff;
}

.concil-auto-modal .modal-content .form .ninja-forms-field {
    background-color: transparent;
    border: 3px solid #ad8fff;
    width: 100%;
}

.concil-auto-modal .modal-content .form .ninja-forms-field:hover {
    background-color: #ad8fff;
}

.concil-auto-modal .modal-content .form input[type="email"] {
    background-color: #ad8fff;
    color: #fff;
}

.concil-auto-modal .modal-content .form input[type="email"]::placeholder {
    color: transparent;
}


.concil-auto-modal .modal-content .footer .logo {
    text-align: center;
    margin-bottom: 10px;
}

.concil-auto-modal .modal-content .footer .logo-text {
    text-align: center;
    margin-bottom: 0;
}

.concil-auto-modal .modal-content .footer .logo-text img {
	max-width: 200px;
}

.close-button {
    color: #f4f2ef; 
    position: absolute;
    top: 15px; 
    right: 15px; 
    font-size: 2.5em; 
    font-weight: normal; 
    cursor: pointer;
    line-height: 0.6; 
    transition: color 0.2s;
    border: 2px solid #ad8fff;
}

.close-button:hover {
    border-color: #fff;
    color: #ad8fff;
}