html,
body {
  height: 100%;
}

body.enlarged {
  min-height: 100% !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
}
:root {
  --primary: #8800ffd1; /* Purple */
  --secondary: #ffd700; /* Golden */
}
.btn-primary {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 18px rgba(136, 0, 255, 0.10);
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
    transition: background 0.4s, color 0.3s, box-shadow 0.3s, transform 0.2s;
    z-index: 1;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, var(--secondary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    color: #000;
    box-shadow: 0 8px 32px rgba(136, 0, 255, 0.18);
    transform: translateY(-2px) scale(1.04);
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
    opacity: 1;
    animation: btn-glow 0.7s linear;
}

@keyframes btn-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(136, 0, 255, 0.25);
    }
    70% {
        box-shadow: 0 0 16px 8px rgba(255, 215, 0, 0.18);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(136, 0, 255, 0.25);
    }
}

body {
  width: 100%;
  height: 100%;
  position: relative;
  font-family: sans-serif;
  padding-bottom: 0;
  background-color: #fff !important;
  font-family: "Outfit", sans-serif;
}

a {
  color: #04afff;
  transition: all 0.5s;
}

a:hover {
  color: #057d72;
  transition: all 0.5s;
}

.login-content {
  height: 100vh;
  background-size: cover;
}

.login-content .account-logo-box {
  margin-bottom: 70px;
  /* text-align: end; */
  padding: 0;
}

.login-content .account-logo-box img {
  height: auto;
  width: 100px;
}

::selection {
  color: #fff;
  background: #04afff;
}

.login-box {
  height: 100vh;
  width: 100%;
  z-index: 1;
  position: relative;
  background-size: cover;
  background-position: center;
}
.login-box .account-logo-box {
  background: none;
}

.login-box .form-group {
  margin-bottom: 20px;
}
/* Main container styling */
.login-box-inner {
  background: #fff;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(80, 0, 120, 0.08);
  position: relative;
  overflow: hidden;
  /* max-width: 380px; */
  margin: 40px auto;
  background: rgb(255 255 255 / 0%);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgb(0 0 0 / 20%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Decorative glow using pseudo-elements */
.login-box-inner::before,
.login-box-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128, 0, 192, 0.12), transparent 70%);
  z-index: 0;
}

.login-box-inner::before {
  width: 220px;
  height: 220px;
  top: -60px;
  left: -60px;
}

.login-box-inner::after {
  width: 140px;
  height: 140px;
  bottom: -40px;
  right: -40px;
}

/* Inner container */
.login-inner {
  position: relative;
  z-index: 1;
}

/* Logo section */
.account-logo-box img {
  max-width: 110px;
  transition: transform 0.3s ease-in-out;
}

.account-logo-box img:hover {
  transform: scale(1.05);
}

/* Heading section */
.login-head .title {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(142, 68, 173, 0.08);
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}
.login-head {
  text-align: center;
}
.login-head .sub-title {
  font-size: 14px;
  color: #4d4d4d;
  margin-bottom: 18px;
}

/* Form elements */
.form-group-inner {
  display: flex;
  align-items: center;
  background: #f7f5fa;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 10px;
  border: 1px solid #e0d7f7;
}
.form-control:focus {
  background: transparent;
}
.login-icon {
  color: var(--primary);
  font-size: 18px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-icon.style-1 {
  margin-left: auto;
  cursor: pointer;
  color: var(--primary);
}

/* Inputs */
input.form-control {
  background: transparent;
  border: none;
  color: #4b006e;
  box-shadow: none;
  font-size: 15px;
  padding: 6px 0;
}

input::placeholder {
  color: #b39ddb;
}

/* Button */
.login-btn button {
  width: 100%;}

/* Forgot Password */
.forget-link a {
  color: #888;
  font-size: 13px;
  text-decoration: underline;
}

.forget-link a:hover {
  color: var(--primary);
}

/* Home Button */
.btn-outline-success {
  margin-top: 8px;
  margin-bottom: 14px;
  border-radius: 30px;
  transition: all 0.3s;
  padding: 6px 18px;
  font-size: 14px;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: #fff;
}

.btn-outline-success:hover {
  background-color: var(--primary);
  color: #fff !important;
}

.forget-link a {
  color: #4b006e;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
  background: #ece0ffb4;
  border-radius: 6px;
  padding: 6px 10px 6px 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.forget-link a i {
  font-size: 16px;
  color: var(--primary);
  margin-right: 3px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
  vertical-align: middle;
  display: inline-block;
}

.forget-link a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #04afff 0%, var(--primary) 100%);
  border-radius: 2px;
  opacity: 0.18;
  transform: scaleX(0.25);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  pointer-events: none;
}

.forget-link a:hover {
  color: var(--primary);
}

.forget-link a:hover i {
  color: #04afff;
  transform: translateY(-2px) scale(1.15) rotate(-8deg);
}

.forget-link a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
.img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 40px;width: 500px;
  height: 500px;
  border-radius: 100%;
}

.img-box img {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  object-fit: contain;
}

.background-animation .border-animate {
  position: absolute;
  border: 4px solid var(--primary);
  inset: 0;
  border-radius: 100%;
  
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.background-animation {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    animation: floatY 3s ease-in-out infinite;width: 500px;
  height: auto;
  margin: auto;
    
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {


        transform: translateY(0);
    }
}


.login-right-img .text-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(142, 68, 173, 0.10);
    padding:     10px; 
    position: relative;
    z-index: 2;
}
.login-right-img .text-content h3 {
  color: #434343;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.3;
  text-align: center;
}
.login-right-img .text-content h3 span {
  color: var(--primary);
  background: #ece0ffb4;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(142, 68, 173, 0.08);
  margin-top: 6px;
  display: inline-block ;
}
label{
    color: #4a4a4a;
}

.text-content img{
    position: absolute;
    width: 150px;
    height: auto;
    top: -62px;
    left: -90px;
    animation: floatY 3s ease-in-out infinite;
    animation-delay: 1s;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18));
}
.login-right-img .text-content{
  max-width: 500px;
  margin: auto;
}

@media(max-width:992px)
{

  .login-right-img{
    display: none;

  }.login-box {
  height: 100%;
  }
}

@media(max-width:768px)
{

 .login-head .title {
  font-size: 28px;
 }
}