@charset "UTF-8";
/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* Variables */
.shade {
  background-color: rgba(203, 240, 204, 0.5);
  border-radius: 20px;
  padding: 10px;
}

.med-shade {
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.28);
  border-radius: 12px;
  background: rgba(203, 240, 204, 0.5);
  padding: 0px;
  transition: box-shadow 0.3s;
}

:root {
  --primary-color: #4CAF50;
  --secondary-color: #ed3813;
  --primary-light: #66BB6A;
  --primary-dark: #388E3C;
  --secondary-light: #f44336;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.login-body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem 0;
}

.login-body::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 150%;
  height: 150%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-20px) translateY(-10px);
  }
  50% {
    transform: translateX(10px) translateY(-20px);
  }
  75% {
    transform: translateX(-10px) translateY(10px);
  }
}
.login-container {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 1rem;
}

.welcome-header {
  text-align: center;
  margin-bottom: 2rem;
}

.welcome-header h1 {
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.welcome-header p {
  color: var(--text-light);
  font-size: 1rem;
}

.new-plan-banner {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  color: var(--white);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  animation: pulse 2s ease-in-out infinite;
}

.new-plan-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shine 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
@keyframes shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
.new-plan-banner h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.new-plan-banner p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input::-moz-placeholder {
  color: #999;
  opacity: 0.7;
}

.form-group input::placeholder {
  color: #999;
  opacity: 0.7;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
  transform: translateY(-1px);
}

.form-group input:focus + .input-icon {
  color: var(--primary-color);
}

.login-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.login-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.login-btn:active {
  transform: translateY(0);
}

.links {
  text-align: center;
}

.home-link {
  display: inline-block;
  color: #007bff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.home-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.success-message {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 1rem;
  display: none;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 480px) {
  .container {
    padding: 2rem;
    margin: 1rem;
  }
  .welcome-header h1 {
    font-size: 1.7rem;
  }
}
.plan-features {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  border-left: 4px solid var(--primary-color);
}

.plan-features h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.plan-features ul {
  list-style: none;
  padding: 0;
}

.plan-features li {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  position: relative;
  padding-left: 1rem;
}

.plan-features li:before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}/*# sourceMappingURL=loginpage.css.map */