:root {
  --royal-red: #921a13;
  --royal-red-dark: #7a1510;
  --royal-red-light: #a82620;
  --royal-gold: #d4af37;
  --royal-gold-light: #e5c76b;
  --royal-black: #000000;
  --royal-gray: #333333;
  --royal-light-gray: rgb(249, 249, 249);
  --royal-white: #ffffff;
}

body {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  background-color: var(--royal-light-gray);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  z-index: -1;
}

.brand-wrapper {
  margin-bottom: 30px;
  text-align: center;
}

.brand-wrapper .logo {
  height: 70px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.brand-wrapper .logo:hover {
  transform: scale(1.05);
}

.login-card {
  border: 0;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  backdrop-filter: blur(5px);
  position: relative;
}

.login-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0));
  transform: rotate(30deg);
  animation: shinyEffect 6s linear infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes shinyEffect {
  0% {
    transform: translate(-30%, -30%) rotate(0deg);
  }

  100% {
    transform: translate(30%, 30%) rotate(360deg);
  }
}

.login-card-img {
  border-radius: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-card .card-body {
  padding: 60px 50px;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
}

.login-card .card-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--royal-red), var(--royal-red-dark));
}

@media (max-width: 422px) {
  .login-card .card-body {
    padding: 35px 24px;
  }
}

.login-card-description {
  font-size: 22px;
  color: var(--royal-black);
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.login-card-description::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  bottom: 0;
  left: 20%;
  background: linear-gradient(to right, var(--royal-red), var(--royal-gold), var(--royal-red));
}

.login-card form {
  max-width: 326px;
}

.login-card .form-control {
  border: 1px solid #e0e0e0;
  padding: 15px 25px;
  /* margin-bottom: 20px; */
  min-height: 45px;
  font-size: 14px;
  font-weight: normal;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.login-card .form-control:focus {
  border-color: var(--royal-red);
  box-shadow: 0 0 0 0.2rem rgba(146, 26, 19, 0.15);
  transform: translateY(-2px);
}

.login-card .form-control::placeholder {
  color: #919aa3;
}

.login-card .login-btn {
  padding: 13px 20px 12px;
  background: linear-gradient(135deg, var(--royal-red), var(--royal-red-dark));
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  color: var(--royal-white);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
}

.login-card .login-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}

.login-card .login-btn:hover {
  background: linear-gradient(135deg, var(--royal-red-dark), var(--royal-red));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(146, 26, 19, 0.3);
}

.login-card .login-btn:hover::before {
  left: 100%;
}

.login-card-footer-text {
  font-size: 16px;
  color: var(--royal-gray);
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .login-card-footer-text {
    margin-bottom: 24px;
  }
}

.login-card-footer-nav a {
  font-size: 14px;
  color: var(--royal-gray);
}

.premium-texture-bg {
  background: linear-gradient(135deg, rgb(249, 249, 249) 0%, rgb(235, 235, 235) 50%, rgb(249, 249, 249) 100%);
  position: relative;
  overflow: hidden;
}

.premium-texture-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100 M20,0 L100,80 M0,20 L80,100 M40,0 L100,60 M0,40 L60,100 M60,0 L100,40 M0,60 L40,100 M80,0 L100,20 M0,80 L20,100" stroke="rgba(0,0,0,0.03)" stroke-width="1"/></svg>');
  background-size: cover;
  z-index: 1;
}

.premium-texture-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 2;
  animation: shine 8s infinite linear;
}

@keyframes shine {
  0% {
    background-position: -100% -100%;
  }

  50% {
    background-position: 100% 100%;
  }

  100% {
    background-position: -100% -100%;
  }
}

.login-card .col-md-5 {
  position: relative;
}

.login-card .col-md-5::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 3;
}

.chevron-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.chevron-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(135deg, transparent 49.5%, rgba(212, 175, 55, 0.15) 49.5%, rgba(212, 175, 55, 0.15) 50.5%, transparent 50.5%),
    linear-gradient(45deg, transparent 49.5%, rgba(212, 175, 55, 0.1) 49.5%, rgba(212, 175, 55, 0.1) 50.5%, transparent 50.5%);
  background-size: 30px 30px;
  z-index: 0;
}

/*# sourceMappingURL=login.css.map */