.card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    min-height: 500px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.card-left {
    background: linear-gradient(135deg, #0c0c0d96, #e2e7ed);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50%;
}

.card-left-content {
    text-align: center;
    padding: 2rem;
}

.card-left-content span {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

.card-right {
    background: white;
    padding: 3rem;
    display: flex;
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    flex: 0 0 50%;
}

@media only screen and (max-width: 600px) {
    .card {
        flex-direction: column;
        min-height: auto;
    }
    
    .card-left,
    .card-right {
        flex: 0 0 100%;
        min-height: 250px;
    }
}

@media only screen and (max-width: 600px) {
    .card {
        flex-direction: column;
        min-height: auto;
    }
}

#btnEntrar button {
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 1px;

    background: #004BB4 !important;
    transition: all 0.3s ease;

    padding: 0 2rem;
    height: auto;
}

#btnEntrar button:hover {
    background: #003a8c !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,75,180,0.25);
}

.input-field input,
select.browser-default {
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #ddd;
}

.input-field input:focus {
    border-color: #004BB4;
    box-shadow: 0 0 0 2px rgba(0,75,180,0.15);
}

.textoColorEvento {
    color: #555;
}

.textoColorEvento a {
    color: #004BB4;
    font-weight: 500;
}

.input-field input[type="email"] {
    border-radius: 8px;
    padding: 0 10px; 
    border: 1px solid #ddd;
    height: 3rem; 
    box-sizing: border-box;
}

.input-field input[type="email"]:focus {
    border-color: #004BB4;
    box-shadow: 0 0 0 2px rgba(0,75,180,0.12);
}

.modal-content ul {
    list-style: disc;
    padding-left: 25px;
}

.modal-content li {
    margin-bottom: 8px;
}

.custom-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

 
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
} 

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
} 

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 10;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.7);
} 
.carousel-wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

@media only screen and (max-width: 600px) {
    .card-left, .card-right {
        flex: 0 0 100%;
        min-height: 250px;
    }
    .carousel-wrapper {
    width: 70vw;
    margin-left: calc(27% - 20vw);
}
}

