* {
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Roboto Flex", sans-serif;
}

body::-webkit-scrollbar {
  width: 2px;
}

body::-webkit-scrollbar-thumb {
  background-color: #f0f44f;
  border-radius: 2px;
}
.full-auth-container{
    display: flex;
    justify-content: space-between;
    align-items: stretch; 
    height: 100vh;
}
.side-auth-info-background{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #000000;
    height: 100%;
}

.side-auth-info-background img{
    width: 100%;
    height: auto;
    object-fit: cover;  
}
.auth-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1rem;
  overflow-y: auto;
  height: 100%;
  background: #333;
}
.auth-container::-webkit-scrollbar{
  width: 2px;
}
.auth-container::-webkit-scrollbar-thumb{
 background-color:#f0f44f;
 border-radius: 2px;
}
.auth-container {
  scrollbar-width: thin;
  scrollbar-color: #f0f44f transparent;
}

.auth-container img{
     width: 50%;
     height: auto;
     object-fit: contain;
}

.form-step {
  display: none;  
  flex-direction: column;  
  max-width: 500px;
  width: 100%;
  padding: 10px 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease;
}


.form-step.active {
  display: flex;       
  opacity: 1;
  transform: translateY(0);  
}

.login-step{
  display: flex;
  width: 100%;
  flex-direction: column;
  max-width: 500px;
  padding: 10px 20px; 
}
.form-data{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

.login-link{
 margin-top: 10px;
 font-size: clamp(0.8rem, 0.8vh, 1rem); 
 color: #ccc;
}
.reset-link{
 margin-bottom: 10px;
 font-size: clamp(0.8rem, 0.8vh, 1rem); 
 font-weight: 800;
 color: #ccc;
}
.reset-link a,.login-link a{
 text-decoration: none;
 color: #f0f44f;
}
.reset-link a:hover{
 text-decoration: underline;
}

.auth-container button{
    background-color: #000000;
    padding: 10px;
    border-radius: 15px;
    border: none;
    color: #ffffff;
    width: 100%;
    margin-top: 10px;
}

.submit-btn{
    background-color: #000000;
    padding: 10px;
    border-radius: 15px;
    border: none;
    color: #ffffff;
    width: 50% !important;
    margin-top: 10px;
}
.form-group{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}
.form-group p{
    background-color: #f6f6f6;
    border-radius: 10px;
    padding: 30px 10px;
    border: 1px solid transparent; 
    transition: border-color 0.3s ease;
}
.form-group p:hover{
    border-color: #f0f44f;
}

#step6 p, #step6 h3{
  text-align: start;
}
#step6 a{
  color: #f0f44f;
  font-size: clamp(0.8rem, 0.7vh, 1rem);
}
.auth-container h3{
 font-size: clamp(1rem, 0.7vh, 1.2rem);
 color: #ccc;
 text-transform: capitalize;
}
.auth-container h4{
font-size: clamp(0.9rem, 0.7vh, 1rem);
line-height: 1.6;
color: #999;
font-weight: 400; 
}
#step6 h4{
    text-align: start;
}


#user_selected_currency{
  width: 100%;
}

#user_selected_currency p {
  background-color: #f6f6f6;
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
  cursor: pointer;
  width: 100px;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 0.7vh, 1rem);
  border: 1px solid transparent;
}

#user_selected_currency p.selected{
  border-color: #f0f44f;
  background-color: #f4f5ce;
  color: #000000;
}

.auth-container form label,
.form-step label {
  font-size: clamp(0.8rem, 0.6vh, 1rem);
  text-align: left;
  display: block;
  color: #999;
}

.auth-container input[type="text"],
.auth-container input[type="password"],
.auth-container input[type="email"] {
  margin-bottom: 10px;
  margin-top: 5px;
  width: 100%;
  height: 30px;
  padding: 20px 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: clamp(0.8rem, 0.7vh, 1rem);
  caret-color: #f0f44f;
  font-family: inherit;
  transition: border 0.5s ease, box-shadow 0.5s ease;
}



.auth-container form input:focus,
.form-step input:focus {
  border: 1px solid #f0f44f;
  box-shadow: 0 0 5px rgba(106, 97, 230, 0.5);
  outline: none;
}

.auth-container input::placeholder,
.form-step input::placeholder {
  font-size: clamp(0.8rem, 0.7vh, 1rem);
  color: #999;
}

.password-strength-bar {
  height: 4px;
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 2px;
}
.password-strength-bar.weak {
  background-color: #f44336;
}
.password-strength-bar.fair {
  background-color: #ff9800;
}
.password-strength-bar.good {
  background-color: #ffc107;
}
.password-strength-bar.strong {
  background-color: #4caf50;
}


.password-strength-text {
  font-size: 12px;
  color: #555;
}

.error-inline-msg {
  color: #f44336;
  font-size: 12px;
  display: block;
  margin-top: 3px;
}

.success-message, .error-message, .warning-message {
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  z-index: 99999;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transition: bottom 1.5s ease-in-out, opacity 1.5s ease-in-out, visibility 0s 1.5s;
}

.success-message {
  color: #52B788;
  background: #D8F3DC;
}

.error-message {
  color: #ff3b3b;
  background: #F8AD9D;
}

.warning-message {
  color: #000000;
  background: #F8AD9D;
}

.message-box.show {
  bottom: 50px;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.message-box .icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
}

.message-box .text {
  text-align: start;
  font-size: clamp(1rem, 1vw, 1.2rem);
  font-weight: 500;
}

.message-box .home-btn {
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  color: #ffffff;
  font-size: clamp(1rem, 0.7vw + 0.7vh, 1.3rem);
  background: #000000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.close-msg {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}

.close-msg:hover {
  color: #ff3b3b;
}

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #f0f44f;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
.notification-popup {
  position: fixed;
  top: -100px; 
  left: 20px;
  background: #111;
  color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 9999;
}

.notification-popup.show {
  top: 20px;
  opacity: 1;
}

.notification-popup img {
  width: 50px;
  height: auto;
  border-radius: 50%;
  background: #f0f44f;
  padding: 10px;
}
@media (max-width: 850px){
  .full-auth-container{
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 650px){
  .side-auth-info-background{
    display: none;
  }
  .auth-container img{
     width: 100%;
     height: auto;
     object-fit: contain;
   }
    #step6{
    margin-top: 45%;
   }
   .push{
  padding: 4rem 1rem; 
  }
 .resetpushpage{
  padding: 10rem 1rem;     
 }
}