.modalCadastro {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;    
    background-color: rgba(0, 0, 0, 0.6);     
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}


.modal-conteudo-cadastro {
    background-color: #fefefe; 
    margin: 10% auto; 
    padding: 30px;
    border: none; 
    border-radius: 12px; 
    width: 90%; 
    max-width: 400px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);     
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from {transform: scale(0.9);}
    to {transform: scale(1);}
}


.modal-conteudo-cadastro form {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}


.modal-conteudo-cadastro label {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.cadastrar-titulo {
    text-align: center;
    margin-bottom: 40px;
    font-family: Arial, Impact, sans-serif;
     font-weight: bold;
    color: #100505; 
}

.modal-conteudo-cadastro input[type="text"],
.modal-conteudo-cadastro input[type="password"],
.modal-conteudo-cadastro input[type="email"] ,
.modal-conteudo-cadastro input[type="tel"] ,
.modal-conteudo-cadastro input[type="date"] {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.modal-conteudo-cadastro input:focus {
    border-color: #D32F2F; 
    outline: none;
}


.modal-conteudo-cadastro button[type="submit"] {
    background-color: #D32F2F; 
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.fecharCadastrar {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}