/* Slider Top */
#topHeightt {
  margin-top: 150px;
}
@media screen and (min-width: 0px) and (max-width: 770px) {
  #topHeightt {
    margin-top: 100px;
  }
}
@media screen and (min-width: 770px) and (max-width: 850px) {
  #topHeightt {
    margin-top: 100px;
  }
}
@media screen and (min-width: 850px) and (max-width: 1033px) {
  #topHeightt {
    margin-top: 127px;
  }
}
@media screen and (min-width: 1030px) and (max-width: 1110px) {
  #topHeightt {
    margin-top: 150px;
  }
}

#topHeightt2 {
  height: 100px;
}
@media screen and (min-width: 0px) and (max-width: 770px) {
  #topHeightt2 {
    height: 40px;
  }
}
@media screen and (min-width: 770px) and (max-width: 850px) {
  #topHeightt2 {
    height: 40px;
  }
}
@media screen and (min-width: 850px) and (max-width: 1033px) {
  #topHeightt2 {
    height: 100px;
  }
}
@media screen and (min-width: 1030px) and (max-width: 1110px) {
  #topHeightt2 {
    height: 100px;
  }
}

.logincontainer {
  display: flex;
  flex-direction: row;
  width: 60%;
  margin: 0 auto;
  min-height: 500px;
  border-radius: 26px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.left-section {
  padding: 0px;
  flex: 1;
  position: relative;
}

.right-section {
  padding: 40px;
  flex: 1;
}
.left-section {
  background-color: #fff;
}

.left-section h1 {
  font-size: 30px;
  margin-bottom: 0px;
}

.sectionform {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* .left-section input {
    padding: 13px 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    outline: none;
    margin:0px;
}


.left-section .inputborder {
    border: 2px solid #ccc;
    outline: none;
}

.left-section .inputborder:focus {
    border-color: #333;
} */

.login-container {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-header h1 {
  margin: 0 0 5px;
  font-size: 24px;
}

.login-header p {
  margin: 0 0 20px;
  color: #777;
  font-size: 14px;
}

.login-input {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
  margin-bottom: 5px;
}

.login-password-wrapper {
  position: relative;
  margin-bottom: 5px;
  margin-top: 15px;
}

.login-password-wrapper input {
  width: 100%;
  padding: 14px 40px 14px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
}

.login-toggle-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 24px;
  height: 24px;
  color: #555;
}

.login-error {
  color: red;
  font-size: 12px;
  margin: 0px;
  display: none;
}

.login-button {
  width: 100%;
  padding: 10px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
}
.register-button {
  width: 100%;
  padding: 10px;
  border: 1px solid black;
  color: black;
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
  background-color: white;
}

.login-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.login-divider span {
  background: #fff;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.login-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  z-index: 0;
}

.black-button {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.black-button:hover {
  background-color: #333;
}

.left-section p {
  margin-top: 8px;
  font-size: 16px;
  margin-bottom: 30px;
}

.left-section a {
  color: #000;
  text-decoration: none;
}

.left-section a:hover {
  text-decoration: underline;
}

.right-section {
  background-color: #cce7ff;
  text-align: center;
}

.right-section .logo img {
  height: 250px;
  margin: 0 auto;
}

.right-section h2 {
  font-size: 24px;
  margin: 10px 0;
}

.right-section p {
  margin-top: 40px;
  font-size: 15px;
  font-weight: 100;
  line-height: 30px;
  letter-spacing: 0.5px;
  color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .right-section p {
    display: none;
  }
  .logincontainer {
    flex-direction: column;
    width: 90%;
  }

  .right-section {
    padding: 20px;
    background-color: #cce7ff;
    text-align: center;
  }

  .right-section .logo img {
    height: 100px;
  }

  .right-section {
    padding: 20px 10px;
  }

  .left-section {
    padding: 15px 0px 38px 0px;
  }
}

.divider {
  width: 87%;
  gap: 10px;
  height: 50px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ccc;
}

.divider span {
  margin: 0 10px;
  color: #888;
  font-size: 14px;
  font-weight: bold;
}

.popup-close {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 0px;
    margin-top: 0px;
    cursor: pointer;
    padding: 8px;
    background-color: rgb(236, 236, 236);
    position: absolute;
    right: 10px;
    top: 10px;
}
.popup-close:hover {
  background-color: antiquewhite;
}

#snackbar {
  visibility: hidden;
  min-width: 250px;
  background-color: #ff0000;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 40%;
  bottom: 5%;
  font-size: 17px;
  border-radius: 12px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#snackbarsuccess {
  visibility: hidden;
  min-width: 250px;
  background-color: #3cb371;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 40%;
  bottom: 5%;
  font-size: 17px;
  border-radius: 12px;
}

#snackbarsuccess.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 5%;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 5%;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}



        .registerninja-form-title {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .registerninja-form-group {
            margin-bottom: 1.25rem;
        }
        
        .registerninja-form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: #4a5568;
            font-weight: 500;
        }
        
        .registerninja-form-input {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.2s;
        }
        
        .registerninja-form-input:focus {
            outline: none;
            border-color: #4299e1;
            box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
        }
        
        .registerninja-submit-btn {
            width: 100%;
            padding: 0.75rem;
            background-color: #4299e1;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .registerninja-submit-btn:hover {
            background-color: #3182ce;
        }
        
        /* Popup Overlay */
        .registerninja-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .registerninja-popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Popup Content */
        .registerninja-popup-content {
            background: white;
            border-radius: 12px;
            width: 90%;
            max-width: 300px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .registerninja-popup-overlay.active .registerninja-popup-content {
            transform: translateY(0);
        }
        
        /* Processing Popup Specific */
        .registerninja-processing-popup .registerninja-popup-icon {
            margin-bottom: 1.5rem;
        }
        
        .registerninja-processing-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid #e2e8f0;
            border-top-color: #4299e1;
            border-radius: 50%;
            animation: registerninja-spin 1s linear infinite;
            margin: 0 auto;
        }
        
        .registerninja-processing-text {
            color: #2d3748;
            font-size: 1.1rem;
            margin-top: 1rem;
        }
        
        /* Success Popup Specific */
        .registerninja-success-popup .registerninja-popup-icon {
            margin-bottom: 1.5rem;
        }
        
        .registerninja-success-icon {
            width: 60px;
            height: 60px;
            background-color: #48bb78;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
        }
        
        .registerninja-success-icon svg {
            width: 30px;
            height: 30px;
            fill: white;
        }
        
        .registerninja-success-title {
            color: #2d3748;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .registerninja-success-message {
            color: #4a5568;
            margin-bottom: 1.5rem;
        }
        
        .registerninja-countdown-text {
            color: #718096;
            font-size: 0.9rem;
        }
        
        .registerninja-countdown-number {
            font-weight: 600;
            color: #4299e1;
        }
        
        @keyframes registerninja-spin {
            to { transform: rotate(360deg); }
        }