:root {
    --primary-color: #6c3ce4;
    --background-color: #022957;
    --card-bg: #242438;
    --text-color: #fff;
    --secondary-text: #8f8f9d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  max-width: 480px;
  margin: 0 auto;
  padding-bottom: 100px;
  min-height: 100vh;
  /*background: #FFFDF4;*/
  background: url('/oraiPay/Image_fx.jpg') no-repeat center center/cover;
  position: relative;
  overflow-x: hidden;
}

.gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}

.gradient:nth-child(1) {
  width: 28px;
  height: 298px;
  left: 30%;
  top: 20%;
  background: linear-gradient(180deg, #b8860b 0%, #b19d2b00 100%);
  transform: rotate(30deg);
}

.gradient:nth-child(2) {
  width: 56px;
  height: 56px;
  left: 60%;
  top: 10%;
  background: #b8860b;
  box-shadow: 0 0 20px #b8860b, 0 0 40px #b8860b75;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.login-container {
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header .logo {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    /*border-radius: 50%;*/
}

.login-header h1 {
    color: #000000;
    font-size: 19px;
    margin-bottom: 10px;
}

.login-header p {
    color: #000000;
    font-size: 16px;
}

.login-form {
   background: rgba(255, 255, 255, 0.25); /* light milky tint */
   backdrop-filter: blur(20px); /* strong glass blur */
   -webkit-backdrop-filter: blur(20px); /* Safari support */
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: 16px;
   box-shadow: inset 3px -12px 20px 4px rgba(0, 0, 0, 0.2);
   padding: 20px;
}
.login-form h1{
    color: #000000;
    font-size: 19px;
    margin-bottom: 3px;
    
}
.login-form p{
    color: #000000;
    font-size: 12px;
    margin-bottom: 10px;
    
}
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #b8860b;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #b8860b;
    cursor: pointer;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 40px;
    border: 1px solid #e3752636;
    border-radius: 8px;
    background: #e3752614;
    color: #000000;
    font-size: 16px;
}

input::placeholder {
    color: #8f8f9d;
}
input[type="email"] {
    width: 100%;
    padding: 12px 40px;
    border: 1px solid rgb(187 228 60 / 20%);
    border-radius: 8px;
    background: rgb(209 228 60 / 10%);
    color: white;
    font-size: 16px;
}

.form-footer .remember-me span {
    font-size: 14px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b8860b;
}

.forgot-password {
    color: #b8860b;
    text-decoration: none;
}

.login-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid #e37526;
    background-color: #e37526;
    color: #13282D;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: transform 0.2s ease;
}

.login-btn:active {
    transform: scale(0.98);
}

.register-link {
    text-align: center;
    color: #000000;
}

.register-link a {
    color: #e37526;
    text-decoration: none;
}