body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
}

.reg-bg {
  min-height: 100vh;
  background: url("../../asset/sky2.jpg") center/cover no-repeat;
  position: relative;
}

.reg-overlay {
  min-height: 100vh;
  background: rgba(2, 6, 23, 0.8);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 80px;
}

.reg-card {
  width: 100%;
  max-width: 500px;
  background: #0b1220;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.reg-card h1 {
  color: #00ff99;
  margin-bottom: 5px;
}

.reg-card p {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 25px;
}

.reg-card input {
  width: 90%;
  padding: 13px;
  margin-bottom: 15px;
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 8px;
  color: #ffffff;
}

.reg-card input:focus {
  outline: none;
  border-color: #22c55e;
}

.password-box {
  position: relative;
}

.password-box span {
  position: absolute;
  right: 35px;
  top: 32%;
  /* transform: translateY(-90%); */
  font-size: 13px;
  color: #facc15;
  color: #00ff99;
  cursor: pointer;
}

.reg-card button {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.reg-card small {
  display: block;
  text-align: center;
  margin-top: 18px;
  color: #9ca3af;
}

.reg-card a {
  color: #facc15;
  text-decoration: none;
}

.eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #facc15;
  cursor: pointer;
  user-select: none;
}

.eye.hide {
  opacity: 0.6;
}
.pos-button {
  position: absolute;
  bottom: 30%;
  left: 30%;
  background: #0b1220;
  color: white;
  /* clip-path: polygon(0% 0%,80% 0%,100% 100%,0% 100%); */
  transform: skewX(-15deg);
  transform-origin: bottom right;
  /* transform: rotate(-10deg); */
}
.pos-button h4 {
  margin: 15px 30px;
  font-size: 25px;
}

/* GO BACK ICON */
.back-btn {
  /* Positioning */
  position: fixed;
  bottom: 30px;
  left: 30px;

  /* Styling */
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: #00ff99;
  border: none;
  border-radius: 50px;
  cursor: pointer;

  /* Effects */
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1000;
}
.back-btn a {
  text-decoration: none;
}
/* Hover Animation */
.back-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(110, 142, 251, 0.4);
  filter: brightness(1.1);
}

/* Click Animation */
.back-btn:active {
  transform: translateY(0);
}

.icon {
  font-size: 1.2em;
}

/* Responsive */
@media (max-width: 900px) {
  .reg-overlay {
    justify-content: center;
    padding: 20px;
  }
  
}
@media(max-width:1300px){
  .none{
    display: none;
  }
}
