: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: #0e1d20;
  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, #2BB15B 0%, rgba(43, 177, 91, 0) 100%);
  transform: rotate(30deg);
}

.gradient:nth-child(2) {
  width: 56px;
  height: 56px;
  left: 60%;
  top: 10%;
  background: #2BB15B;
  box-shadow: 0 0 20px #2BB15B, 0 0 40px rgba(43, 177, 91, 0.5);
}

@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: white;
    font-size: 19px;
    margin-bottom: 10px;
}

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

.login-form {
     background: linear-gradient(345deg, #0E1D20 0%, rgba(59, 121, 134, 0.1) 100%);
    background-color: #0E1D20;
   
    border-radius: 15px;
    padding: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

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

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

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 40px;
    border: 1px solid rgb(194 228 60 / 20%);
    border-radius: 8px;
    background: rgb(170 228 60 / 10%);
    color: white;
    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: #B8FF25;
}

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

.login-btn {
    width: 100%;
    padding: 12px;
       border: 1px solid #B8FF25;
    background-color: #B8FF25;
    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: #8f8f9d;
}

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