input{
    margin-top: 15px;
}

.form-Corretor{
    border-radius: 15px;    
    box-shadow: 0 0 .25rem rgba(0, 0, 0, .1);
    /* text-align: center; */
    width: 60%;
    padding: 20px;
}

.informacoes-endereco, .informacoes-nome, .detalhes, .informacoes-complementares{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

input[type=text], input[type=date], input[type=number], input[type=email], textarea, select {
    padding: 0px 8px 4px 8px;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    color: #1c2630;
    font-size: 16px;
}

.botoes{
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    margin-top: 30px;
}

.fs-title {
    font-size: 25px;
    color: var(--text);
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
}

.bottom-line {
    border-radius: 0.25rem;
    margin-top: 3px;
    display: block;
    height: 3px;
    width: 32px;
}

.dataNascimento {
    position: relative;
}

.dataNascimento input {
    padding-left: 25px; /* Espaço para o ícone */
    /* margin-top: 15px; */
    margin-right: 15px;
}

.dataNascimento i {
    position: absolute;
    top: 50%;
    left: 10px; /* Distância da borda esquerda */
    transform: translateY(-50%);
    color: #888; /* Cor do ícone */
    pointer-events: none; /* Impede a interação com o ícone */
}

.dataFormacoes{
    position: relative;
}

.dataFormacoes input {
    padding-left: 35px; /* Espaço para o ícone */
    margin-top: 15px;
}

.dataFormacoes i {
    position: absolute;
    top: 50%;
    left: 10px; /* Distância da borda esquerda */
    transform: translateY(-50%);
    color: #888; /* Cor do ícone */
    pointer-events: none; /* Impede a interação com o ícone */
}

.resumo{
    background-color: #f9f9f9;
    border-bottom: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    padding: 10px 10px;
}

.detalhes{
    padding: 10px 10px;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: all 1s ease;
    opacity: 0;
}

.detalhes.show {
    display: flex; 
    max-height: 1000px; 
    opacity: 1; 
}

.titulos{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.div-diff-tamanho{
    width: 48%;
}

.btn-excluir{

    background-color: #c42343;
    color: #fff;

    padding: 10px 20px;
    margin: 10px 0px 10px 0px;

    /* width: 40%; */

    border: none;
    border-radius: 5px;

    align-self: flex-end;

    font-size: 1.2em;
    font-weight: bold;
}

.titulos-exp-form{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#addExperiencia, #addFormacao, #addIdioma{
    padding: 5px 15px;
    border: 2px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2em;
    transition: all 0.5s;
    background-color: white;
    white-space: nowrap;
}

#addExperiencia:hover, #addFormacao:hover, #addIdioma:hover{
    background-color: #2196F3;
    color: white;
    border-color: #2196F3;
}

#salvarCorretor{
    background-color: #3E5B75;
    color: #fff;

    padding: 10px 20px;
    margin: 10px 0px 10px 0px;

    /* width: 40%; */

    border: none;
    border-radius: 5px;

    align-self: flex-end;

    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.5s;
}

.imagem-logo{
    /*background-image: linear-gradient(13deg, #252b48, #3e5b75, #b8b111);*/
	background-color: #252b48
}

#salvarCorretor:hover{
    background-color: #1a3146;
}

.div-btn-salvar{
    width: 100%;
    display: flex;
    justify-content: center;
}

.campo-invalido {
    border: 2px solid red;
    background-color: #ffe6e6;
}

#div-btn-novo-idioma{
    display: none;
}

#div-btn-novo-idioma.show{
    display: flex;
}

.btn-Corretor-Imobliaria {
    color: #3E5B75 !important;
    border-color: #3E5B75 !important;
}

.btn-Corretor-Imobliaria:hover,
.btn-Corretor-Imobliaria:active,
.btn-Corretor-Imobliaria.active,
.btn-Corretor-Imobliaria:checked,
.btn-Corretor-Imobliaria-selected {
    background-color: #3E5B75 !important;
    color: white !important;
    border-color: #3E5B75 !important;
}



/* Estilo de dispositivo celular */
@media only screen and (max-width: 480px) {

    .form-Corretor{
        width: 100%;
    }

    .div-diff-tamanho{
        width: 100%;
    }

    .titulos-exp-form{
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    #addExperiencia:hover, #addFormacao:hover, #addIdioma:hover{
        background-color: white;
        border: 2px solid #ccc;
        color: #000;
    }

    .fs-title{
        font-size: 20px;
        color: var(--text);
        margin-bottom: 10px;
        font-weight: bold;
        text-align: left;
    }

    .resumo{
        margin-top: 10px;
    }
    

}

/* Estilos para dispositivos médios (tablets) */
@media only screen and (min-width: 481px) and (max-width: 1200px) {

}

/* Estilos para dispositivos maiores (acima de tablets) */
@media only screen and (min-width: 769px) and (max-width: 1200px) {
    

}