@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  height: 100vh;
  display: flex;
  background: rgba(12, 12, 40, 0.95);
  justify-content: center;
  align-items: center;
}
.container {
  width: 1000px;
  height: 600px;
  background: #fff;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.left-section {
  flex: 1;
  background: linear-gradient(87deg, rgb(19 19 53 / 95%), #3d0f6f);
  color: #fff;
  position: relative;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.welcome-text h1 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
}
.welcome-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #f3eaff;
} 
.right-section {
  flex: 0.8;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-box {
  text-align: center;
}
.login-box h2 {
  color: #6a11cb;
  margin-bottom: 30px;
}
.input-group {
  margin-bottom: 15px;
}
.input-group input {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  border: 1px solid #ccc;
  outline: none;
  transition: 0.3s;
}
.input-group input:focus {
  border-color: #6a11cb;
}
.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 20px;
}
.options a {
  color: #6a11cb;
  text-decoration: none;
}
.login-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(90deg, #6a11cb, #e100ff);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.login-btn:hover {
  opacity: 0.9;
}
footer {
  position: absolute;
  bottom: 15px;
  width: 100%; 
  font-size: 12px;
  color: #fff;
}
.dollar-sign {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 100px;
  font-weight: bold;
  color: #ffa700;
  opacity: 0.8;
  pointer-events: none;
  animation: floatDollar 2s ease-in-out infinite, glowDollar 1.5s ease-in-out infinite;
}
@keyframes floatDollar {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-15px);
  }
} 
.logo_text_img img{
    width: 150px;
    height: 150px;
    margin-top: -25px;
}
.gloyex{
    font-weight: bold; 
    font-size: 47px;
}
.New_Account{
    text-decoration: none;
}
@media (max-width: 768px) {
  body {
    padding: 20px;
  }
  .container { 
    flex-direction: column; 
    height: 100%;
  }
  .left-section {
    padding: 40px 25px; 
    display: none;
  }
  .welcome-text h1 {
    font-size: 22px;
  }
  .welcome-text p {
    font-size: 14px;
    line-height: 1.5;
  }
  .right-section {
    padding: 40px 25px;
    flex: none;
  }
  .login-box {
    width: 100%;
  }
  .login-box h2 {
    font-size: 20px;
  } 
  .dollar-sign {
    display: none;
}
}
