
@media (min-width: 901px){

body {
  background-color: #272727 ;
}

.main {
  display: flex;
  height: 100vh;
  width: 100vw;
}

.img-area {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #272727;
}

.img-area img {
  width: 600px;
}

.step1 {
  position: sticky !important;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  right: 0;
  padding: 0 60px;
}
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Touch targets for better mobile UX */
@media (pointer: coarse) {
  button,
  input,
  select,
  a {
    min-height: 44px;
  }
}



.step1 {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
  z-index: 888;
}

@media (max-width: 900px) {

body {
  background-color: var(--bg-primary);
}

.img-area {
  display: none;
}
.step1 {
  width: 100vw;
  height: 100vh;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
  z-index: 888;
}

}


.logo-area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  padding-top: 0px;
  font-size: 1.9rem;
  color: #bbb;
  font-family: Arial, Helvetica, sans-serif;
}

.logo-area span {
    font-weight: bold;
    color: #fff;
}

.page-title {
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  padding: 20px;
  height: 10%;
  color: #aaa;
}

.btn-area {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.btn-area button {
  width: 100%;
  border: none;
  font-size: 1rem;
  color: #fff;
  background: #555;
  border-radius: 12px;
  font-weight: bold;
  padding: 18px;
}

.more {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  padding-bottom: 60px;
  gap: 12px;
}

.alert1 {
  font-size: 1rem;
  color: #bbb;
}

a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}



.inputs-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  width: 100%;
}

.input {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

form {
  width: 100%;
}
.input input {
  background-color: #333;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1rem;
  color: #fff;
  border: none;
}

.input input:focus {
  outline: none;
}


.create-area {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info-area1 {
  height: 20%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}




.forgot-password {
  width: 100%;
  display: flex;
  justify-content: center;
}

.forgot-password button {
  background-color: transparent;
  width: 100%;
  font-size: 1rem;
  color: #bbb;
  border: none;
}


input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #F1F1F1;
  -webkit-box-shadow: 0 0 0px 1000px #333 inset;
  transition: background-color 5000s ease-in-out 0s;
};