* {
	box-sizing: border-box;
}

body {
	font-family: 'Roboto', sans-serif;
}
.container-public{
	display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 4em 1fr;
    min-height: 100vh;
}
.head-search{
	grid-column: 1/2;
	grid-row: 1/2;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2em;
	background: #53575A;
}
.head-search img{
	width: 100%;
	height: auto;
	max-width: 40px;
}
.sec-principal{
	grid-column: 1/2;
	grid-row: 2/3;
	background: #fff;
	/* background: #0075FF; */
}
.sec-principal h2{
	text-align: center;
}
.sec-principal p{
	margin-left: 2em;
	text-align: start;
}
a{
	text-decoration: none;
}
.form {
	background: #E5E5E5;
	width: 100%;
	max-width: 500px;
	padding: 1rem;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	border-radius: 10px;
}
.form-upload {
	background: #E5E5E5;
	width: 100%;
	max-width: 500px;
	padding: 1rem;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: auto;
	row-gap: 10px;
	border-radius: 10px;
}
.form label {
	display: block;
	font-weight: 700;
	padding: 5px 0;
	cursor: pointer;
}

.container_input {
	position: relative;
}

.txt_input {
	width: 100%;
	background: #fff;
	border: 2px solid transparent;
	border-radius: 3px;
	height: 35px;
	line-height: 35px;
	padding: 0 40px 0 10px;
	transition: .3s ease all;
}

.txt_input:focus {
	border: 2px solid #0075FF;
	outline: none;
	box-shadow: 3px 0px 30px rgba(163,163,163, 0.4);
}
select{
    width: 100%;
    background: #fff;
	/* padding: 0 40px 0 10px; */
    display: inline-block;
    /* border: 2px solid transparent; */
    box-sizing: border-box;
    /* border-radius: 3px; */
    transition: .3s ease all;
}
select:focus{
    border: 2px solid #0075FF;
	outline: none;
	box-shadow: 3px 0px 30px rgba(163,163,163, 0.4);
}
textArea{
    width: 100%;
    padding: 5px;
    border-radius: 5px;
}
.txt_error {
	font-size: 12px;
	margin-bottom: 0;
	display: none;
}

.txt_error-activo {
	display: block;
}

.icon_validation {
	position: absolute;
	right: 10px;
	bottom: 15px;
	z-index: 100;
	font-size: 16px;
	opacity: 0;
}

.formulario__checkbox {
	margin-right: 10px;
}

.div_password,.div_password2,.div_correo,.div_enviar, .div_terminos {
	grid-column: span 2;
}


.div_enviar {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.btn_enviar {
	background: #007BDF;
    border: 0;
    padding: .5em 1em;
    border-radius: 4px;
    color: #e4e4e4;
    text-transform: uppercase;
    font-size: 14px;
	font-weight: bold;
}
.btn_upload {
	background: #007BDF;
    border: 0;
    padding: .5em 1em;
    border-radius: 4px;
    color: #e4e4e4;
    text-transform: uppercase;
    font-size: 14px;
	font-weight: bold;
	width: 80px;
}
.btn_enviar:hover,.btn_enviar:focus,.btn_upload:hover,.btn_upload:focus {
	cursor: pointer;
    background: #3952a3;
    color: #ffffff;
    outline: 0;
    transition: background-color 2s ease-out;
}
.btnAction,.btnAction2 {
    border: 0;
    padding: .3em .6em;
    border-radius: 3px;
    color: #e4e4e4;
    text-transform: uppercase;
    font-size: 14px;
	font-weight: bold;
}
.btn_edit,.btn_editd,.btn_des{
	background: #007BDF;
}
.btn_edit:hover,.btn_edit:focus,.btn_editd:hover,.btn_editd:focus{
	cursor: pointer;
    background: #3952a3;
    color: #ffffff;
    outline: 0;
    transition: background-color 2s ease-out;
}
/* ----- -----  Estilos para Validacion ----- ----- */
.validacion_correcto .icon_validation {
	color: #1ed12d;
	opacity: 1;
}

.validacion_incorrecto .icon_validation {
	color: #bb2929;
	opacity: 1;
}

.validacion_incorrecto .txt_input {
	border: 2px solid #bb2929;
}


/* ----- -----  Mediaqueries ----- ----- */
@media screen and (max-width: 800px) {
	.form {
		grid-template-columns: 1fr;
	}

	.div_password,.div_password2,.div_correo,.div_enviar, .div_terminos {
		grid-column: span 1;
	}
}
.title-container{
	display: flex;
	justify-content: space-between;
}
/*********** Seccion Buscar ******/
.table-container {
    overflow: auto;
  }
  
  table.t_responsive {
    /* margin: 2em auto; */
    margin: 2em;
    border-collapse: collapse;
    table-layout: fixed;
    width: 90%;
    min-width: 600px;
  }
  .t_responsive tr:nth-child(even) {
    background: #CCC;
  }
  .t_responsive td {
    border: 1px solid #ccc;
    padding: .3em;
  }
  
  .t_responsive th {
    background: teal;
    color: #fff;
    padding: .5em;
    border-right: 1px solid #ccc;
    border-bottom: none;
  }
  .t_responsive th:last-child {
    border-right: none;
  }
  
  .t_responsive th:first-child {
    border-left: 1px solid teal;
  }