
body{
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}
* {
    border-color: hsl(var(--border));
    padding: 0;
}

:root{    
    --shadow-glow: 0 0 40px hsl(262 83% 58% / .3);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --gradient-primary: linear-gradient(135deg, hsl(262 83% 58%), hsl(220 60% 50%));
    }

.image{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
       
}

.auth-card h1{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 37px;    
}

.text-transparent {
    color: transparent;
}
.font-bold {
    font-weight: 700;
}
.text-4xl {
    /* font-size: 100px; */
    line-height: 2.5rem;
}
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}
.bg-gradient-primary {
    background-image: linear-gradient(135deg, hsl(262, 100%, 90%), hsl(220, 96%, 82%));
}
.mb-2 {
    margin-bottom: .5rem;
}

.auth-card h2{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 220px;
    font-weight: bolder;
    margin-bottom: 0;
}

.auth-card p{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 20px auto;
}

.auth-body p{
    font-size: small;
}

.svg{
  border: 2px solid var(--gradient-primary); /* 1. 5 पिक्सेल चौड़ा, सॉलिड ब्लैक बॉर्डर */
  border-radius: 50%; /* 2. इमेज को गोलाकार बनाने के लिए */
  width: 80px; /* 3. इमेज की चौड़ाई सेट करें */
  height: 80px; /* 4. इमेज की ऊँचाई सेट करें */
  object-fit: cover;
  padding: 20px;
  --tw-shadow: var(--shadow-glow);
    --tw-shadow-colored: var(--shadow-glow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    background-image: var(--gradient-primary); 
}

.auth-body{  
  display: flex; 
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%; 
  position: absolute;
  top: 70px;
}

.box{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ;
    font-size: large;
    height: 380px;
    width: 550px;
    padding: 15px 90px;
    margin: auto;
    border-radius: 18px;
    position:absolute;
    bottom: 70px;

    /* Glass + Glow effect */
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    /* Elevation */
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.25),
        0 0 15px rgba(255, 255, 255, 0.15);

    animation: glow 3s infinite ease-in-out;


/* Border Glow Animation */
@keyframes glow {
    0% {
        border-color: rgba(255, 255, 255, 0.15);
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.25),
            0 0 8px rgba(255, 255, 255, 0.05);
    }
    50% {
        border-color: rgba(255, 255, 255, 0.35);
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.25),
            0 0 18px rgba(255, 255, 255, 0.25);
    }
    100% {
        border-color: rgba(255, 255, 255, 0.15);
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.25),
            0 0 8px rgba(255, 255, 255, 0.05);
    }
}

}


.info{
    margin-top: 15px;
    margin-bottom: 12px;
}

.info2{
    margin-bottom: 15px;
}

.row{
    justify-content: center;
    display: flex;
}

#loginBtn{
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
    justify-content: center;
    width: 100%;
    border-radius: 8px;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

input :placeholder-shown{
    border: transparent grey;
    border-radius: 11px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size:small;
    padding: 12px;
    padding-right: 220px;
    background-color: transparent;
    outline: none;
    width: 250px;
}

span{
    font-size: small;
    display: flex;
    margin-top: 22px;
    justify-content: center;
}

.just{
    display: flexbox;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 600px) {
    .box {
        width: 90%;
        margin: auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .just {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    label {
        width: 100%;
        font-size: 16px;
    }

    input {
        width: 100%;
        font-size: 15px;
    }

    .image {
        display: flex;
        margin: auto;
        transform: scale(0.9);
        justify-content: center;
        align-items: center;
    }

    h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 22px;
    }

    .note {
        font-size: 14px;
        text-align: center;
        display: block;
    }
}

@media (max-width: 600px) {

  .auth-body {
    position: static;
    height: auto;
    padding: 20px;
  }

  .box {
    position: static;
    width: 100%;
    padding: 20px;
    margin-top: 20px;
  }

  .image {
    margin-top: 30px;
  }

  .auth-card {
    margin-top: 10px;
    text-align: center;
  }

  .auth-card h1 {
    font-size: 28px;
  }

  .auth-card p {
    font-size: 14px;
  }

}

.auth-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* padding-top: 20px; */
  height: auto;
  position: static;
}

.image {
  margin-bottom: 40px;
}

.auth-card {
  text-align: center;
  /* margin-bottom: 20px; */
}

.box {
  position: static;
  /* margin-top: 10px; */
  margin-bottom: 20px;
}
