/* ========================================= */
  /* ROOT VARIABLES – ONLY COLORS CHANGE HERE  */
  /* ========================================= */
  :root {
    /* LIGHT MODE (default) */
    --body-gradient-bg-start: #040c43;
    --body-gradient-bg-end: #0a146e;
    --bg-start: #0a146e;
    --bg-end: #040c43;
    --card-bg: rgba(255, 255, 255, 0.9);
    --text: #1a1a2e;
    --accent: #e6e6e6;
    --input-bg: rgba(0, 0, 0, 0.05);
    --border: rgba(0, 0, 0, 0.15);
    --dark-bg: #040c43;
    --layer-wallet-bg: url("images/svg/bg_9240.svg");
    --plan-bg-1: url("images/svg/bg_9240.svg");
    /* Styles for all inner bg */
    --body-bg-inner:#ffffff;
    /* Styles for all color */
    --body-text-color-white: #FFFFFF;
    --body-text-color-1: #ffffff;
    --body-text-color-2: #999999;
    --body-text-color-3: #1a1a2e;
    --body-text-color-4: #1c1e21;
    --body-text-color-5: #000000;
    /* stles for tab */
    --tab-btn-bg: #040c43;
    --tab-btn-active-bg: #0a146e;
    --tab-btn-active-color: #ffffff;
    --orange-link:  #FF6600;
  }

  [data-theme="light"] {
    --body-gradient-bg-start: #090808;
    --body-gradient-bg-end: #232327;
    --bg-start: #090808;
    --bg-end: #999999;
    --card-bg: #232327;
    --text: #e0e0ff;
    --accent: #4D4D4D;
    --input-bg: rgba(255, 255, 255, 0.1);
    --border: rgba(204, 204, 204, 0.281);
    --dark-bg: #090808;
    --layer-wallet-bg: url("images/svg/bg_9240_2.svg");
    --plan-bg-1: url("images/svg/bg_9240_2.svg");
    /* Styles for all inner bg */
    --body-bg-inner:#232327;
    /* Styles for all color */
    --body-text-color-white: #FFFFFF;
    --body-text-color-1: #000000;
    --body-text-color-2: #1c1e21;
    --body-text-color-3: #1a1a2e;
    --body-text-color-4: #999999;
    --body-text-color-5: #ffffff;
    /* stles for tab */
    --tab-btn-bg: #000000;
    --tab-btn-active-bg: #1c1e21;
    --tab-btn-active-color: #ffffff;
    --orange-link:  #FF6600;
  }

/* assets/css/style.css 
:root {
  --bg-start: #040c43;
  --bg-end: #0a146e;
  --card-bg: rgba(255, 255, 255, 0.08);
  --text: #fff;
  --accent: #00d4ff;
  --input-bg: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.2);
}

[data-theme="light"] {
  --bg-start: #e0e7ff;
  --bg-end: #a0b8ff;
  --card-bg: rgba(255, 255, 255, 0.9);
  --text: #1a1a2e;
  --accent: #007bff;
  --input-bg: rgba(0, 0, 0, 0.05);
  --border: rgba(0, 0, 0, 0.15);
}*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Apply variables everywhere */
body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background:linear-gradient(135deg, var(--body-gradient-bg-start), var(--body-gradient-bg-end));
  background-attachment: fixed;
  color: var(--text);
  transition: all 0.4s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  padding:50px 0 !important;

  /* YOUR PRECIOUS BACKGROUND IMAGES – NEVER TOUCHED! */
  /* background-image: url("images/svg/bg_9240.svg"), url("your-other-image.jpg"); /* add as many as you want */
  /* background-size: cover, auto;*/
  /* background-position: center, top right;*/
  /* background-repeat: no-repeat;*/
}

.container {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  box-sizing: border-box;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 40px 30px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  position: relative;
}

.container form {  
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  box-sizing: border-box; 
  overflow: hidden;
}

.container #resetPassword {  
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  box-sizing: border-box; 
  overflow: hidden;
}


h2 {
  text-align: center;
  margin: 0;
  padding:0 0 20px 0;
  font-weight: 600;
  font-size: 20px;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  box-sizing: border-box;
  justify-content: center;
  align-content: center;
  align-items: center;
}

h3 {
  text-align: center;
  margin: 0;
  padding:20px 50;
  font-weight: 600;
  font-size: 24px;
  width: 100%;
   display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  box-sizing: border-box;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
   display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  box-sizing: border-box;
}

.input-group input {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  box-sizing: border-box;
  padding: 14px 45px;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 16px;
  outline: none;
  transition: all 0.3s;
}

.input-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
}

.input-group i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 18px;
}

.show-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #aaa;
}

button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--body-gradient-bg-start), var(--body-gradient-bg-end));
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.links {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.links a {
  color: var(--orange-link);
  text-decoration: none;
  font-weight: 600;
}

.links a:hover {
  text-decoration: underline;
}

.alert {
  padding: 12px;
  margin: 15px 0;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
}

.alert-danger {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid #dc3545;
}

.alert-success {
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid #28a745;
}

.theme-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
}

#toggleDarkMode {
    position: absolute;
    top: 70px;
    right: 20px;
    z-index: 999;
    background: #333;
    color: white;
    padding: 10px 12px !important;
    border: none;
    border-radius: 10px;
    width: 80px;
  }

  /* THEME COONTROL SWITCH Starts */
  .themeControl {
    position: absolute;
    top: 50px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
  }

  .themeControl {
    display: flex;
    box-sizing: border-box;
    width: 42px;
    height: 20px;
    overflow: hidden;
    background-color: var(--dark-bg);
    border-radius: 50px;
    justify-content: center;
    align-content: center;
    border: 2px solid #fff;
  }

  .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    border-radius: 10px;
  }

  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  input:checked + .slider::before {
    transform: translateX(20px);
  }

  .slider {
    width: 40px;
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 3px;
    transition: 0.4s;
    border-radius: 10px;
    background-image: url("images/svg/lite-theme-indecator.svg");
    background-size: 18px 18px;
    background-position: center right;
    background-repeat: no-repeat;
  }

  .slider::before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    margin: 2px 3px;
    background-color: #fff;
    transition: 0.5s;
    border-radius: 50%;
  }

  input:checked + .slider {
    background-image: url("images/svg/dark-theme-indecator.svg");
    background-size: 18px 18px;
    background-position: center left;
    background-repeat: no-repeat;
    box-shadow: 0 1px 6px 0 rgb(0 0 0 16%);
  }
  /* THEME COONTROL SWITCH Ends */

  /* Dark Mode Starts */

  .footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    font-size: 0.9rem;
    text-align: center;
    color: #94a3b8;
    justify-content: center;
    align-content: center;
    margin: 20px 0 0 0;
}

@media (max-width: 480px) {
  .footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    font-size: 0.9rem;
    text-align: center;
    color: #94a3b8;
    justify-content: center;
    align-content: center;
    margin: 20px 0 0 0;
}

#message{
    width: 100%;
}

  .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 30px 20px;
    margin: 0 20px;
    width: 100%;

  }

  .logo, .name{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    box-sizing: border-box;
    height: auto;
    margin: ;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    align-content: center;
    align-items: center;    
  }

  .logo a{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    box-sizing: border-box;
    text-decoration: none !important;
    color: var(--body-text-color-white);
    margin: 0 auto;
  }

  .logo a img{    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 70px;
    margin: 0 auto;
  }

  .name{}
}
