.auth-main {
  position: relative;
  height: 100%;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.auth-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.nik_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
}


.error {
        color: red;
        font-size: 12px;
    }

.form-control.error {
    border-color: red;
}

.form-control{
/*  background-color: #fffc !important;*/
  border-bottom: none;
}



/* For Borders around form which are rotating */
@property --rotate {
            syntax: "<angle>";
            initial-value: 132deg;
            inherits: false;
          }

          :root {
            --nikhil-card-height: 65vh;
            --nikhil-card-width: calc(var(--nikhil-card-height) / 1.5);
          }

          .nikhil_card {
            width: var(--nikhil-card-width);
            height: var(--nikhil-card-height);
            padding: 0px;
            cursor: pointer;
          }

          .nikhil_card:hover {
            color: rgb(88 199 250 / 100%);
            transition: color 1s;
          }
          

          .nikhil_card::before {
            content: "";
            width: 101%;
            height: 101%;
            border-radius: 20px;
            background-image: linear-gradient(
              var(--rotate)
              , #5ddcff, #3c67e3 43%, #4e00c2);
              position: absolute;
              z-index: -1;
              top: -3px;
              left: -3px;
              animation: spin 2.5s linear infinite;
          }

          .nikhil_card::after {
            position: absolute;
            content: "";
            top: calc(var(--nikhil-card-height) / 6);
            left: 0;
            right: 0;
            z-index: -1;
            height: 100%;
            width: 100%;
            margin: 0 auto;
            transform: scale(0.8);
            filter: blur(calc(var(--nikhil-card-height) / 6));
            background-image: linear-gradient(
              var(--rotate)
              , #5ddcff, #3c67e3 43%, #4e00c2);
              opacity: 1;
            transition: opacity .05s;
            animation: spin 2.5s linear infinite;
          }

          @keyframes spin {
            0% {
              --rotate: 0deg;
            }
            100% {
              --rotate: 360deg;
            }
          }