/* Importing Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 15px;
  background-image: linear-gradient(120deg, #e3e1e1 0%, #ebedee 100%);
  overflow: hidden;
}
.wrapper {
  max-width: 500px;
  width: 100%;
  background: linear-gradient(to bottom, #c1c3c4, #f0f0f0);
  border-radius: 5px;
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
}
.wrapper .title {
  height: 90px;
  background: linear-gradient(to right, #000428, #004e92);
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper form {
  padding: 25px 35px;
}
.wrapper form .row {
  height: 60px;
  margin-top: 15px;
  position: relative;
}
.wrapper form .row input {
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 70px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  font-size: 18px;
  transition: all 0.3s ease;
}
form .row input:focus {
  border-color: #918fa0;;
}
form .row input::placeholder {
  color: #999;
}
.wrapper form .row i {
  position: absolute;
  width: 55px;
  height: 100%;
  color: #fff;
  font-size: 22px;
  background: linear-gradient(to right, #000428, #004e92);
  border: 1px solid #122352;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper form .pass {
  margin-top: 12px;
}
.pass {
  text-align: center; 
}
.wrapper form .pass a {
  color: #2616a0;
  font-size: 17px;
  text-decoration: none;
}
.wrapper form .pass a:hover {
  text-decoration: underline;
}
.row.button {
  margin-bottom: 20px; /* Ajusta el valor según lo necesites */
}
/* Boton de submit  */
.wrapper form .button input {
  margin-top: auto;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-left: 0px;
  background-image: linear-gradient(to right, #1e3c72 0%, #2a5298  51%, #1e3c72  100%);
  border: 1px solid #2616a0;
  cursor: pointer;
}

form .button input:hover {
  background-image: linear-gradient(to right, #1e3c72 0%, #2a5298  51%, #212c41  100%);
  background-position: right center; /* change the direction of the change here */
   color: #fff;
   text-decoration: none;
}
/* Nuevo de link */
.wrapper form .signup-link {
  text-align: center;
  margin-top: 15px; /* Espaciado más pequeño */
  font-size: 16px;
  color: #444; /* Color más suave */
  display: block; /* Asegura que se muestre */
}

.wrapper form .signup-link a {
  color: #1e3c72;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
  display: inline-block; /* Evita que se esconda */
}

/* Evita que quede oculto */
.wrapper form .signup-link a:hover {
  background: linear-gradient(45deg, #16196e, #3b82f6); /* Define el degradado */
    -webkit-background-clip: text; /* Aplica el degradado solo al texto */
    background-clip: text; 
    color: transparent; /* Hace el texto transparente para mostrar el degradado */
    text-decoration: underline; /* Mantiene el subrayado */
}