* {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

.background {
  background-color: #0B1626;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

#header {
  animation: slideInLeft 0.8s ease-out;
}

#content-area {
  animation: fadeIn 1s ease-out;
}

.verify,
.mobile-delete,
#icon-grid,
.reverse,
.help {
  animation: fadeIn 1.2s ease-out;
}

.name {
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
}

.header-feature {
  color: white;
  font-family: 'Nunito', sans-serif;
  transition: all 0.3s ease;
  position: relative;
}

.header-feature:hover {
  color: #2380F7;
  transform: translateY(-2px);
}

.header-feature::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2380F7;
  transition: width 0.3s ease;
}

.header-feature:hover::after {
  width: 100%;
}

.btn {
  background-color: #2380F7;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
}

.btn:hover {
  background-color: #1a6fd4;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(35, 128, 247, 0.4);
}

.btn-outline-primary {
  border: 2px solid #2380F7;
  color: #2380F7;
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: #2380F7;
  color: white;
  transform: translateY(-2px);
}

.footer-img {
  height: 30px;
  width: 30px;
  margin-left: 30px;
  transition: all 0.3s ease;
}

.footer-img:hover {
  transform: rotate(360deg) scale(1.1);
}

.border {
  color: #12243e;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.border1 {
  color: #9fb3b7;
  margin-left: 30px;
  margin-right: 30px;
}

.page-title {
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.page-subtitle {
  font-family: 'Nunito', sans-serif;
  color: #9fb3b7;
  font-weight: 500;
  font-size: 1rem;
  max-width: 600px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.verify-title,
.mobile-title,
.delete-title {
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.verify-details,
.help {
  background-color: #0f1e33;
  border: 1px solid #9fb3b7;
  padding: 28px 32px;
  max-width: 600px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.verify-desc,
.step-desc,
.reverse-desc,
.help-desc {
  color: #9fb3b7;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  margin-bottom: 20px;
}

.email-head,
.pass-head,
.reverse-head,
.help-head {
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: bold;
}

.email-box,
.pass-box {
  background-color: #0f1e33;
  border: 1px solid #9fb3b7;
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

/* ✅ input style */
.form-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
}

.form-input::placeholder {
  color: #9fb3b7;
  font-weight: 300;
}

.delete {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}

.delete-box {
  background-color: #EF4444;
  border-radius: 10px;
  height: 44px;
  padding: 0 20px;
  margin-top: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
  border: none;
}

.delete-box:hover {
  background-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
}

.delete-desc {
  color: white;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1;
}

.forgot {
  color: #9fb3b7;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  line-height: 44px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.forgot:hover {
  color: #2380F7;
  text-decoration: underline;
}

/* ✅ error msg */
.form-error {
  color: #ffaaaa;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  margin-top: -10px;
  margin-bottom: 10px;
}

/* Steps */
.step-title {
  font-family: 'Nunito', sans-serif;
  color: white;
  font-size: 1rem;
  font-weight: bold;
}

.mobile-delete {
  font-family: 'Nunito', sans-serif;
}

.mobile-delete-box {
  background-color: #0f1e33;
  border: 1px solid #9fb3b7;
  width: 100%;
  padding: 24px 32px;
  max-width: 600px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.step-active {
  background-color: #2380F7;
  color: white;
}

.step-number {
  min-width: 40px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.step {
  display: flex;
  gap: 30px;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateX(5px);
}

.step:hover .step-number {
  transform: scale(1.1);
}

.step2 {
  border-color: #2380F7;
  color: #2380F7;
}

.step-danger {
  border-color: #EF4444;
  color: #EF4444;
}

.step-desc1 {
  margin-bottom: 50px;
}

/* Layout */
.content-wrapper {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.center-box {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Hover effects */
.verify-details:hover,
.mobile-delete-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(35, 128, 247, 0.2);
}

.email-box:focus-within,
.pass-box:focus-within {
  border-color: #2380F7;
  box-shadow: 0 0 0 3px rgba(35, 128, 247, 0.1);
}

/* Icons */
.icon {
  stroke: #9fb3b7;
  fill: white;
  margin-right: 10px;
  margin-left: 10px;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-color: #0f1e33;
  border: 1px solid #9fb3b7;
  border-radius: 8px;
  margin-right: 8px;
  margin-left: 8px;
}

/* ✅ SUCCESS SCREEN */
.success-screen {
  width: 100%;
  max-width: 720px;
  padding: 30px 0;
  animation: fadeIn 0.6s ease-out;
}

.success-box {
  width: 100%;
  background-color: #0f1e33;
  border: 1px solid #2380F7;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(35, 128, 247, 0.15);
}

.success-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.success-title {
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  margin-bottom: 10px;
}

.success-desc {
  color: #9fb3b7;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
}

.success-desc.small {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Buttons */
.btn2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4DA3FF, #2380F7);
  color: #0B1626;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  margin: 0 auto;
  transition: all 0.3s ease;
}

.btn2:hover {
  background: linear-gradient(135deg, #6BB4FF, #3B90FF);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45);
}

.footer-left,
.footer-right {
  color: #9fb3b7;
  font-size: 14px;
  margin-bottom: 0%;
}
