
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
    }

    body {
      background: linear-gradient(135deg, #e0fdf6 0%, #bbf7d0 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      height: 100%;
      padding: 20px;
    }



    .login-container {
      background: white;
      border-radius: 15px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      padding: 30px;
      width: 100%;
      max-width: 380px;
      animation: slideUp 0.6s ease-out;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .btn-login-outline {
  width: 100%;
  padding: 12px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #059669;
  border: 2px solid #059669;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}
    .btn-group {
  display: flex;
  justify-content: space-between;
  gap: 4%;
}
    .login-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
      background: #6ee7b7;
      padding: 16px;
      border-radius: 10px 10px 0 0;
      margin: -30px -30px 20px -30px;
      padding-top: 20px;
      padding-bottom: 20px;
    }

    .logo-container {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: rgba(0, 0, 0, 0.35);
      border-radius: 10px;
      flex-shrink: 0;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
    }

    .logo-letter {
      font-size: 40px;
      font-weight: 800;
      color: #ffffff;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    }

    .header-content {
      text-align: center;
      flex: 1;
    }

    .login-header h1 {
      font-size: 24px;
      color: #1a1a1a;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .login-header p {
      color: #666;
      font-size: 13px;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: #333;
      font-weight: 500;
      font-size: 14px;
    }

    .form-group input {
      width: 100%;
      padding: 6px 10px;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-size: 14px;
      transition: all 0.3s ease;
      height: 36px;
    }

    .form-group input:focus {
      outline: none;
      border-color: #10b981;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    }

    .form-group input::placeholder {
      color: #ccc;
    }

    .remember-forgot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
      font-size: 13px;
    }

    .remember-forgot label {
      margin: 0;
      display: flex;
      align-items: center;
      cursor: pointer;
      color: #666;
    }

    .remember-forgot input[type="checkbox"] {
      margin-right: 6px;
      cursor: pointer;
      width: 16px;
      height: 16px;
    }

    .remember-forgot a {
      color: #10b981;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .remember-forgot a:hover {
      color: #059669;
    }

    .btn-login {
      width: 100%;
      padding: 12px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-bottom: 15px;
    }

    .btn-login:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    }

    .btn-login:active {
      transform: translateY(0);
    }

    .divider {
      display: flex;
      align-items: center;
      margin: 18px 0;
      color: #ddd;
    }

    .divider::before,
    .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: #e0e0e0;
    }

    .divider span {
      margin: 0 12px;
      color: #999;
      font-size: 13px;
    }

    .social-login {
      display: flex;
      gap: 12px;
      margin-bottom: 16px;
    }

    .social-btn {
      flex: 1;
      padding: 10px;
      border: 2px solid #e0e0e0;
      background: white;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .social-btn:hover {
      border-color: #10b981;
      background: #ecfdf5;
    }

    .signup-link {
      text-align: center;
      color: #666;
      font-size: 14px;
    }
    .text-verde{
        color: #10b981;
    }
    .signup-link a {
      color: #10b981;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
    }

    .signup-link a:hover {
      color: #059669;
    }

    @media (max-width: 480px) {
      .login-container {
        padding: 0 20px 30px 20px;
        margin: 20px;
      }

      .login-header {
        margin: 0 -20px 20px -20px;
        padding: 16px 20px;
        gap: 12px;
      }

      .login-header h1 {
        font-size: 24px;
      }

      .logo {
        width: 50px;
        height: 50px;
        font-size: 28px;
      }
      
      
    }
  