.video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(111, 7, 121, 0.3) 0%,
        rgba(5, 1, 34, 0.9) 100%);
    z-index: -1;
}

body {
    font-family: 'Arial', sans-serif;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.container {
    max-width: 900px;
    margin: auto;
}

.row {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

form {
    background: transparent;
    padding: 30px;
    border-radius: 10px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #fff;
}

p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
textarea {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    margin-bottom: 15px;
}

textarea {
    min-height: 100px;
    resize: vertical;
    border-radius: 15px;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

button {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #6f0779, #a167ba);
    color: white;
    width: 100%;
    margin-top: 10px;
}

button:hover {
    background: linear-gradient(45deg, #8a589f, #6f0779);
    box-shadow: 0 0 5px 1px rgba(255, 255, 255, 0.745);
}

.neon-button {
    padding: 12px 30px; 
    border: none; 
    border-radius: 25px; 
    font-size: 1rem; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    background: rgba(255, 255, 255, 0.1); 
    color: white; 
    text-decoration: none; 
    display: inline-block; 
    text-align: center;
    width: 100%;
}

.neon-button:hover {
    box-shadow: 0 0 5px 1px rgba(255, 255, 255, 0.745);
    color: white;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container {
    text-align: center;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    margin-bottom: 30px;
}

.login-link {
    text-align: center;
}

.login-link p {
    margin-bottom: 10px;
}

#dtnasc::-webkit-calendar-picker-indicator {
    filter: invert(1.0) brightness(100%);
    cursor: pointer; /* Garante que o cursor seja um ponteiro sobre o ícone */
}

/* Responsividade */
@media (max-width: 768px) {
    .row {
        flex-direction: column-reverse;
    }
    
    .logo-section {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 20px;
    }
    
    .col-md-8, .col-md-4 {
        width: 100%;
    }
}