*{
  -ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}


html, body{
  width: 100%;
  height: 100%;
  font-family: 'Ubuntu', sans-serif;
  background-image: url("../images/condominio.jpg");
  background-color: #cccccc; /* Used if the image is unavailable */
  width: 100%x; /* You must set a specified height */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}

.titulo{
   text-shadow: 4px 3px 3px #1618f0;
}

h1, h3{
  color: white;
  text-align: center;
  font-weight: bold;
}

.login{
  position: relative;
  top: 70%;
	width: 320px;
  display: table;
  margin: -150px auto 0 auto;
  background: #fff;
  border-radius: 16px;
}

.legend{
  position: relative;
  width: 100%;
  display: block;
  align: center;
  text-align: center;
  background: #6b5d5a;
  padding: 15px;
  color: #fff;
  font-size: 20px;
  border-radius: 15px 15px 0px 0px;

  &:after{
    content: "";
    background-size: 100px 100px;
    background-repeat: no-repeat;
    background-position: 152px -16px;
    opacity: 0.06;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
  }
}


.divinput{
  position: relative;
  width: 90%;
  margin: 15px auto;

span{
    position: absolute;
    display: block;
    color: darken(#EDEDED, 10%);
    left: 10px;
    top: 8px;
    font-size: 20px;
}

  .campo{
    width: 100%;
    height: 25px;
    padding: 10px 5px 10px 40px;
    display: block;
    border: 1px solid #EDEDED;
    border-radius: 4px;
    transition: 0.2s ease-out;
    color: darken(#EDEDED, 30%);

    &:focus{
      padding: 10px 5px 10px 10px;
      outline: 0;
      border-color: #FF7052;
    }
  }
}

.submit{
  width: 120px;
  height: 45px;
  display: block;
  margin: 0 auto -15px auto;
  background: #6b5d5a;
  border-radius: 100%;
  border: 2px solid #1618f0;
  color: #1618f0;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0px 0px 0px 7px #fff;
  transition: 0.2s ease-out;

  &:hover, &:focus{
    background: #FF0000;
    color: #fff;
    outline: 0;
  }
}

.info {
    color: #00529B;
    background-color: #BDE5F8;
    background-image: url('images/info.jpg');
}
.correcto {
    color: #4F8A10;
    background-color: #DFF2BF;
    background-image:url('../images/correcto.JPG');
}
.ojo {
    color: #9F6000;
    background-color: #FEEFB3;
    text-align: center;
    border: solid 1px #9F6000;
    border-radius: 0px 0px 15px 15px;
}
.error {
    color: #ff0000;
    background-color: #FFBABA;
    text-align: center;
    border: solid 1px #ff0000;
    border-radius: 0px 0px 15px 15px;
}
