
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: lato, sans-serif;
    background-image: url(images/Fondo03.png);
    background-position: center;
    height: 100vh;
    background-size: cover
}

@font-face {
  font-family: Arcade;
  src: url(Font/ReQuest.otf);
}

h1{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 40px;
  font-family: Arcade;
  margin: 30px 20px;
  color: aliceblue;
}

/**
* ! Estilo de la tarjeta
**/

.frontal {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 800px;
  margin: auto;
  /*--box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);--*/
  padding: 50px 20px;
}

.container{
  flex-direction: column;
  display: flex;
  background: url(images/Textura.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  max-width: 550px;
  min-height: 315px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 15px;
}

.chip {
	width: 100%;
	max-width: 40px;
	margin-bottom: 15px;
}
.card{
  padding: 10px;
}

.card .logo_marca{
  text-align: right;
	min-height: 50px;
}

.card .logo_marca img{
  width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: 80px;
  margin-top: -6%;
  
}



/**
Estilo del formulario
**/
label {
  display: block;
  margin-bottom: 5px;
}

form div input {
  width: 100%;
  height: 40px;
  max-width: 250px;
  outline: none;
  border: 2px solid #c4c4c4;
  border-radius: 8px;
  padding:20px 30px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/**
Estilo para los iconos del formulario
**/

form div i {
    position: absolute;
    padding: 10px;
  }


.failure-icon,
.error {
  color: red;
}

.success-icon {
  color: green;
}

.success-icon,
.failure-icon {
  right: 1;
  opacity: 1;
}

.error {
  font-size: 15px;
  margin-top: 5px;
}



/**
Estilo para el boton
**/

button{

font-size: 15px;
line-height: 30px;
color: whitesmoke;
border-radius: 5px;
border: 2px solid #62b26b;
background-color: #62b26b;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
margin-top: 15px;
width: 100%;
max-width: 100px;
height: 40px;
}

