@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,600,700&display=swap');

body.login-bg {
  /* background: url('../images/fondo.png') no-repeat center center fixed; */
  /* background-color: #bdbdbd; */
  background: linear-gradient(135deg, rgb(183,217,196), #93C5E4);
  background-size: cover;
  min-height: 100vh;
  font-family: 'Quicksand', sans-serif;
}
.login-wrapper {
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.login-minimal {
  background: rgba(255,255,255,0.95);
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2.2rem 2.2rem 2.2rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.04);
}


.login-title { text-align: center; color: #0057b8; font-size: 1.3rem; font-weight: 700; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.input-icon-group, .form-group {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid #e0e0e0;
  background: transparent;
  margin-bottom: 0.7rem;
  padding: 0.1rem 0.2rem;
  transition: border-color 0.2s;
}
.input-icon-group:focus-within, .form-group:focus-within {
  border-bottom: 2px solid #00a86b;
}
.input-icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  color: #bdbdbd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  height: 48px;
  font-size: 1.13em;
  color: #222;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
}
.login-input::placeholder { color: #bdbdbd; }
.btn-login {
  width: 100%;
  background: #00a86b;
  color: #fff;
  border: none;
  border-radius: 4px;
  height: 40px;
  font-weight: 600;
  font-size: 1em;
  margin-top: 0.5rem;
  transition: background 0.2s;
  cursor: pointer;
}
.btn-login:hover, .btn-login:focus { background: #0057b8; color: #fff; }
.invalid-feedback { color: #dc3545; font-size: 0.85em; margin-top: 0.2rem; }
.forgot-password-link { color: #0057b8; font-size: 0.95em; text-align: right; display: block; margin-bottom: 1.2rem; text-decoration: none; }
.forgot-password-link:hover { color: #00a86b; text-decoration: underline; }
#remember + label { color: #0057b8; }


.btn-planes-flotante {
    position: fixed;
    right: 32px;
    top: 10%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #00c97b 0%, #00a86b 100%);
    color: #fff !important;
    border: none;
    border-radius: 32px;
    padding: 16px 38px;
    font-size: 1.18rem;
    font-weight: 700;
    box-shadow: 0 6px 24px 0 rgba(0,168,107,0.18), 0 1.5px 4px 0 rgba(0,0,0,0.10);
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
    z-index: 2000;
    outline: none;
    text-shadow: 0 1px 8px rgba(0,0,0,0.08);
    text-decoration-line: none;
}
.btn-planes-flotante:hover, .btn-planes-flotante:focus {
    transform: translateY(-50%) scale(1.07);
    box-shadow: 0 10px 32px 0 rgba(0,168,107,0.28), 0 2px 8px 0 rgba(0,0,0,0.13);
    background: linear-gradient(90deg, #00e08f 0%, #00a86b 100%);
    color: #fff !important;
    text-decoration: none;
}
.btn-crear-cliente {
    display: inline-block;
    background: #00a86b;
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    padding: 10px 0;
    text-decoration: none !important;
    transition: background 0.18s;
    margin-top: 2px;
    display: block;
    width: 100%;
}
.btn-crear-cliente:hover, .btn-crear-cliente:focus {
    background: #0057b8;
    color: #fff !important;
    text-decoration: none;
}

@media (max-width: 480px) {
  .login-minimal {
    max-width: 300px;
    padding: 2rem 2rem 2rem 2rem;
  }
  .btn-planes-flotante {
    right: 32px;
    top: 90%;
  }
}
