/* Acomoda el fondo */
#id_img_fondo{
	width: 100%;
	height: 100%;
	top:0;
	left:0;
	position:fixed;
	z-index: -1;
}

/* Apariencia input */
input[type=text],
input[type=password]{
border:2px solid #FFFFFF;
border-radius:4px;
margin:3px 0;
outline:none;
padding:8px;
box-sizing:border-box;
transition:.3s;
}

input[type=text]:focus,
input[type=password]:focus{
border-color:dodgerBlue;
box-shadow:0 0 8px 0 dodgerBlue;
}

select {
border:2px solid #FFFFFF;
border-radius:4px;
margin:3px 0;
outline:none;
padding:8px;
box-sizing:border-box;
transition:.3s;
}

select:focus {
border-color:dodgerBlue;
box-shadow:0 0 8px 0 dodgerBlue;
}

/* Boton Busqueda*/
.my-button {
  padding: 4px 15px;
  background-color: #FFFFFF;
  color: #000000;
  border: none;
  border: 2px solid #DCDCDC;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;

}

.my-button:hover {
  background-color: #DCDCDC;
}

/* Estilo Iniciar Sesion*/
.btn {
    margin-top: calc(0% + 25px);
    position: relative;
    display: inline-block;
    width: 277px;
    height: 50px;
    font-size: 1em;
    font-weight: bold;
    line-height: 60px;
    text-align: center;
    text-transform: uppercase;
    background-color: transparent;
    cursor: pointer;
    text-decoration:none;
    font-family: 'Roboto', sans-serif;
    font-weight:900;
    font-size:17px;
    letter-spacing: 0.045em;
}

.btn svg {
    position: absolute;
    top:  0;
    left: 0;
}

.btn svg rect {
    //stroke: #ff9500;
    stroke-width: 4;
    stroke-dasharray: 353, 0;
    stroke-dashoffset: 0;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
}

.btn span{
  background: rgb(255,130,130);
  background: -moz-linear-gradient(left,  rgba(255,130,130,1) 0%, rgba(225,120,237,1) 100%);
  background: -webkit-linear-gradient(left,  rgba(255,130,130,1) 0%,rgba(225,120,237,1) 100%);
  background: linear-gradient(to right,  rgba(255,130,130,1) 0%,rgba(225,120,237,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9500', endColorstr='#ff9500',GradientType=1 );

  -webkit-background-clip: text;
  -webkit-text-fill-color: #ffffff;
}

.btn:hover svg rect {
    stroke-width: 4;
    stroke-dasharray: 196, 543;
    stroke-dashoffset: 437;
}
