:root {
    --primary: #F56416;
    --primary-dark: #e05a13;
    --primary-light: #ff8f49;
    --secondary: #f8f9fa;
    --text-dark: #0A2342;
    --text-light: #666;
    --text-lighter: #999;
    --error: #dc3545;
    --success: #28a745;
    --border: #ddd;
    --shadow: rgba(0, 0, 0, 0.1);
    --overlay: rgba(10, 35, 66, 0.75);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    overflow-y: hidden;
  }
  
  .login-wrapper {
    align-items: flex-start;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
  }
  
  /* Background shapes animation */
  .background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  
  .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
  }
  
  .shape-1 {
    background: var(--primary);
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite;
  }
  
  .shape-2 {
    background: var(--primary);
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    animation: float 12s ease-in-out infinite;
  }
  
  .shape-3 {
    background: var(--text-dark);
    width: 150px;
    height: 150px;
    bottom: 100px;
    left: 80px;
    animation: float 8s ease-in-out infinite;
  }
  
  @keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
  }
  
  /* Logo Styles */
  .logo-container {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
  }
  
  .logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 10px 15px -3px rgba(245, 100, 22, 0.3);
  }
  
  .company-name {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
  }
  
  .highlight {
    color: var(--primary);
  }
  
  /* Main Content */
  .login-container {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    height: auto;
  }
  
  .form-panel {
    padding: 40px;
    display: flex;
    flex-direction: column;
  }
  
  .welcome-text {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;    
  }
  
  .subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 15px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 15px;
  }
  
  .input-container {
    position: relative;
  }
  
  .input-container input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
  }
  
  .input-container input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 100, 22, 0.1);
  }
  
  .error {
    display: none;
    color: var(--error);
    font-size: 14px;
    margin-top: 5px;
  }
  
  .options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
  }
  
  .remember-me {
    display: flex;
    align-items: center;
  }
  
  .remember-me input {
    margin-right: 8px;
  }
  
  .remember-me label {
    color: var(--text-light);
    font-size: 14px;
  }
  
  .forgot-password {
    color: var(--primary);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .forgot-password:hover {
    color: var(--primary-dark);
    text-decoration: underline;
  }
  
  .login-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .login-button:hover {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(245, 100, 22, 0.2);
  }
  
  .login-button .arrow-icon {
    transition: transform 0.3s;
  }
  
  .login-button:hover .arrow-icon {
    transform: translateX(4px);
  }
  
  .signup-text {
    text-align: center;
    margin-top: 25px;
    color: var(--text-light);
    font-size: 14px;
  }
  
  .signup-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
  }
  
  .signup-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
  }
  
  .info-panel {
    display: flex;
    flex-direction: column;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px;
    text-align: center;
    min-height: 300px;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, rgba(10, 35, 66, 0.9) 100%);
    z-index: 1;
  }
  
  .info-panel .content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  .info-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .info-panel h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
  }
  
  .info-panel p {
    margin-bottom: 25px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
  }
  
  .benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
  }
  
  .benefit-icon svg {
    width: 18px;
    height: 18px;
    stroke: white;
  }
  
  /* Success Message */
  .success-message {
    background: linear-gradient(to right, var(--success), #49c26a);
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    margin-top: 20px;
    animation: fadeIn 0.5s ease-out;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Responsive Design */
  @media (min-width: 768px) {
    .login-container {
      flex-direction: row;
      height: 600px;
    }
    
    .form-panel {
      flex: 1;
      padding: 50px;
    }
    
    .info-panel {
      flex: 1;
      padding: 0;
      min-height: auto;
    }
    
    .info-panel .content {
      padding: 40px;
    }
    
    .benefits-container {
      gap: 20px;
    }
  }
  
  @media (min-width: 992px) {
    .form-panel {
      padding: 60px;
    }
    
    .welcome-text {
      font-size: 32px;
    }
  }
  