:root{
  --brand: #2072AF;     
  --violet: #1560BD;     
  --paper: #f7faf8;     
}

html, body {
  height: 100%;
  margin: 0;
  background: var(--paper);
}

/* Background container */

.bg{
  width: 100%;
	height: 100%;
	background: linear-gradient(
		rgba(35,83,145,0.45),
		rgba(35,83,145,0.45)
		),
  url(../unsplash1.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
  
}

/* Card */
.auth-card{
  width: min(420px, 90vw);
  border-radius: .75rem;
  backdrop-filter: blur(10px);
  background: #ffffff;
}

/* Brand Logo */
.brand-logo{
  width: auto; height: auto;
  border-radius: 3px;
  display: inline-grid;
  place-items: center;
  background: transparent;
  color: var(--brand);
  font-size: 24px;
  font-weight: 700;
}

/* Buttons */
.btn-primary{
  background: linear-gradient(135deg, var(--brand), var(--violet));
  border: none;
}
.btn-primary:hover{ filter: brightness(1.1); }

/* Hover lift */
.hover-lift{ transition: transform .2s ease, box-shadow .2s ease; }
.hover-lift:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(35,83,145,.25);
}

/* Password toggle */
.password-toggle{
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  padding: .375rem .5rem;
  color: #1560BD;
  text-decoration: none;
}
.password-toggle:hover{ color: #1560BD; }


