.widucogecita-container {
    position: fixed;
    bottom: 20px; 
    right: 20px; 
    z-index: 99; 
}

.widucogecita-button {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: #000000; 
    padding: 10px 100px; 
    cursor: pointer;
	color: white;
	border: none;
}

.widucogecita-button:hover {
    background-color: white;
	color: black;
	transition: 0.5s;
}

.widucogecita-icon {
    width: 20px; 
    height: 20px;
    margin-right: 10px; 
}

button.widucogecita-button:hover img {
    filter: brightness(0);
	transition: 0.5s;
}


.widucogecita-form {
    position: fixed;
    top: 0;
    right: -35%;
    width: 35%;
    height: 100%;
    background-color: white; 
    box-shadow: -4px 0 6px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
	.widucogecita-form {
		right: -75%;
		width: 75%;
	}	
}


.widucogecita-form-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    background-color: white;
    color: black;
}

.widucogecita-close {
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    margin-right: 10px;
    font-family: 'Jost';
    text-transform: capitalize;
	margin-top: 2rem;
}

.widucogecita-form-body {
    padding: 20px;
    overflow-y: auto;
}

.widucogecita-form-body form {
    display: flex;
    flex-direction: column;
}

.widucogecita-form-body form label {
    margin-bottom: 5px;
    font-weight: 400;
    text-transform: uppercase;
    color: #AAAAAA;
}

.widucogecita-form-body form input {
    margin-bottom: 15px;
    padding: 10px 0px;
    border: none;
    border-bottom: 1px solid #000000;
    background: none;
	outline:none;
    color: black;
}

.widucogecita-form-body form input:focus {
	animation: blink 2s infinite;
}

@keyframes blink {
    0% {
        border-bottom-color: black;
    }
    50% {
        border-bottom-color: transparent;
    }
    100% {
        border-bottom-color: black;
    }
}

.widucogecita-form-body form button {
    background-color: white;
    color: #000000;
    border: solid 2px black;
    padding: 10px;
    cursor: pointer;
    text-transform: uppercase;
}

.widucogecita-form-body form button:hover {
    background-color: #000000;
	color: white;
	transition: 0.5s;
}

.widucogecita-form-body form input::placeholder {
    text-transform: uppercase;
    color: black;
}

p.widucogecita-form-title {
    margin-top: 5rem;
    margin-bottom: 2rem;
    color: black;
    font-family: 'Jost';
    font-weight: 600;
}

#widucogecita-form .checkbox-group {
    display: grid !important;
    gap: 10px 0;
}