@charset "UTF-8";

/* ===========================
   WRAPPER
=========================== */
.authentication-wrapper {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
}

.authentication-inner {
  width: 100%;
  max-width: 420px;
  position: relative;
}

/* ===========================
   PUNTITOS ARRIBA
=========================== */
.authentication-inner::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(#134B70 2px, transparent 2px);
  background-size: 25px 25px;
}

/* ===========================
   PUNTITOS ABAJO
=========================== */
.authentication-inner::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(#134B70 2px, transparent 2px);
  background-size: 25px 25px;
}

/* ===========================
   CARD
=========================== */
.card {
  border: none;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  z-index: 2;
}

/* ===========================
   LOGO
=========================== */
.app-brand img {
  transition: transform .3s ease;
}

.app-brand img:hover {
  transform: scale(1.05);
}
