/* Registration Page Redesign - Premium Aesthetics */

:root {
  --accent-color: #F2930E;
  --accent-hover: #d17e0c;
  --glass-bg: rgba(25, 41, 61, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-muted: rgba(255, 255, 255, 0.6);
}

/* Mesh Gradient Background */
.registration-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 20px 60px;
 
  /* background: radial-gradient(at 0% 0%, hsla(213, 58%, 18%, 1) 0, transparent 50%),
    radial-gradient(at 50% 0%, hsla(36, 88%, 50%, 0.15) 0, transparent 50%),
    radial-gradient(at 100% 0%, hsla(213, 58%, 25%, 1) 0, transparent 50%),
    radial-gradient(at 0% 100%, hsla(36, 88%, 50%, 0.1) 0, transparent 50%),
    radial-gradient(at 100% 100%, hsla(213, 58%, 15%, 1) 0, transparent 50%);
  background-color: #0d1b2a; */
  position: relative;
  overflow: hidden;
}

.registration-main::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  filter: blur(150px);
  opacity: 0.1;
  top: -100px;
  right: -100px;
  z-index: 0;
}

/* Glassmorphism Card */
.registration-card-wrapper {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.registration-card {
  /* background: var(--glass-bg); */
  background-color: #19293d;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.registration-card:hover {
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
}

/* Typography & Headers */
.registration-header {
  text-align: center;
  margin-bottom: 40px;
}

.registration-header h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.registration-header p {
  color: var(--text-muted);
  font-size: 16px;
}

.registration-header .logo-img {
  height: 50px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(242, 147, 14, 0.3));
}

/* Form Styles */
.form-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-label i {
  color: var(--accent-color);
  font-size: 16px;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(242, 147, 14, 0.15);
  color: #ffffff;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}

/* Button & Actions */
.custom-btn {
  background: var(--accent-color);
  border: none;
  border-radius: 12px;
  padding: 10px 32px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  margin-top: 20px;
}

.custom-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(242, 147, 14, 0.4);
  color: #ffffff;
}

.custom-btn:active {
  transform: translateY(0);
}

.footer-link-text {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 25px;
  text-align: center;
}

.footer-link-text a {
  color: #ffc107;
  text-decoration: none;
  font-weight: 600;
}

.footer-link-text a:hover {
  text-decoration: underline;
}

/* Responsive Refinements */
@media (max-width: 768px) {
  .registration-card {
    padding: 30px 20px;
  }

  .registration-header h3 {
    font-size: 32px;
  }

  .registration-main {
    padding-top: 120px;
  }
}

@media (max-width: 576px) {
  .registration-header h3 {
    font-size: 28px;
  }

  .registration-card-wrapper {
    padding: 0 10px;
  }
}

.input-container {
  position: relative;
  width: 300px;
}

#password-field {
  width: 100%;
  padding: 10px;
  padding-right: 35px; /* Make space for the icon */
}

.field-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #555;
}

.password{
  position: absolute;
  width: 45%;
}
.toggle-password{

 position: relative;
 margin-top: 14px;
float: inline-end;
}