@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;700&family=Crimson+Text&display=swap');

/* Fonts Form Google Font ::- https://fonts.google.com/ -:: */
@import url('https://fonts.googleapis.com/css?family=Abel|Alegreya|Dancing+Script|Playfair+Display&display=swap');

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background:  url('../img/fondo7.jpg') no-repeat center center fixed;
  background-size: 100% 100%;
}

.login-clean {
  padding: 10px 0;
  max-width: 320px; /* Mantén el ancho máximo de .login-clean si lo deseas */
  width: 100%; /* Esto hará que .login-clean ocupe todo el ancho disponible */
  border-radius: 0; /* Si deseas eliminar el borde redondeado */
}



/*codigo de estilos de la caja del login*/
.login-clean form {
  max-width:320px;
  margin:0 auto;
  background-color:#ffffff;
  padding:40px;
  border-radius:4px;
  border: 1px solid rgba(200,200,200, 0.7);
  color:#505e6c;
  box-shadow:2px 2px 10px rgba(66,123,173,0.6);
}


/*codigo de estilos de los formularios*/
.login-clean form .form-control {
  border:none;
  border-bottom:1px solid #dfe7f1;
  border-radius:2px 2px 0 0;
  box-shadow:none;
  color:inherit;
  text-indent:8px;
  height:42px;
}

/*codigo del boton de acceder*/
.login-clean form .btn-primary {
  background:#427BAD;
  border:none;
  border-radius:2px;
  padding:11px;
  box-shadow:none;
  margin-top:26px;
  text-shadow:none;
  outline:none !important;
}

/* cambiar color cuando se pase el mouse sobre el boton*/
.login-clean form .btn-primary:hover, .login-clean form .btn-primary:active {
  background:rgb(0, 163,224);
}



.login-logo a
{
    
    font-size: 30px;
    text-align: center;
    color: #554;
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: 'Anton', sans-serif;
    
}

.login-logo
{
    margin-top: -1em;
    
}

.spin
{
  color: #554;
}


p
{
  font-family: 'Alegreya', serif;
}



@media (min-width: 360px) and (max-width: 600px){

	/*---------------------------------------------HEADER*/
  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background:  url('../img/fondo7.jpg') no-repeat center center fixed;
    background-size: cover;
  }
  
  .login-clean {
    background: none;
    padding: 10px 0;
    max-width: 280px; /* Mantén el ancho máximo de .login-clean si lo deseas */
    width: 100%; /* Esto hará que .login-clean ocupe todo el ancho disponible */
    border-radius: 0; /* Si deseas eliminar el borde redondeado */
  }
  
  
  
  /*codigo de estilos de la caja del login*/
  .login-clean form {
    max-width:320px;
    margin:0 auto;
    background-color:#ffffff;
    padding:40px;
    border-radius:4px;
    border: 1px solid rgba(200,200,200, 0.7);
    color:#505e6c;
    box-shadow:2px 2px 10px rgba(66,123,173,0.6);
  }
  
  
  /*codigo de estilos de los formularios*/
  .login-clean form .form-control {
    border:none;
    border-bottom:1px solid #dfe7f1;
    border-radius:2px 2px 0 0;
    box-shadow:none;
    color:inherit;
    text-indent:8px;
    height:42px;
  }
  
  /*codigo del boton de acceder*/
  .login-clean form .btn-primary {
    background:#427BAD;
    border:none;
    border-radius:2px;
    padding:11px;
    box-shadow:none;
    margin-top:26px;
    text-shadow:none;
    outline:none !important;
  }
  
  /* cambiar color cuando se pase el mouse sobre el boton*/
  .login-clean form .btn-primary:hover, .login-clean form .btn-primary:active {
    background:rgb(0, 163,224);
  }


}