* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body {
      background: linear-gradient(135deg, #74ebd5, #ACB6E5);
      background-color: #e5e5f7;
      opacity: 0.8;
      background-image: radial-gradient( ellipse farthest-corner at 4px 4px , #d4d5db, #d4d5db 50%, #e5e5f7 50%);
      background-size: 4px 4px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
  }
  
  .login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
  }
  
  .login-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  
  .logo-section {
    margin-bottom: 20px;
  }
  .logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
  }
  .company-name {
    font-size: 1.3rem;
    color: #555;
    font-weight: 700;
  }
  
  .form-group {
  
    text-align: left;
  }
  .form-group label {
    display: block;
  
    color: #555;
    font-size: 0.95rem;
  }
  .form-group input {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    background-color: #fff;
    transition: border-color .2s;
  }
  .form-group input:focus {
    border-color: #2193b0;
    outline: none;
  }
  
  label.valid {
    display: inline-block;
    text-indent: -9999px;
}

label.error {
    color: #C10000;
    font-size: 0.9em;
    margin-top: -5px;
    padding: 0;
}

span.error {
    color: #B94A48;
    font-size: 0.9em;
    padding: 0;
}

span.error p {
    margin: 2px 0 2px !important;
}
  .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 20px;
    font-size: 0.9rem;
    color: #555;
  }
  .form-options label {
    display: inline-flex;
    align-items: center;
    margin-bottom: .5rem;
    white-space: nowrap;
  }
  .form-options input[type="checkbox"] {
    margin-right: 6px;
  }
  .forgot-link {
    color: #2193b0;
    text-decoration: none;
  }
  .forgot-link:hover {
    text-decoration: underline;
  }
  
  .login-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #2193b0, #6dd5ed);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
  }
  .login-btn:hover {
    background: linear-gradient(to right, #1e7e99, #57cbe9);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  }
  
  .footer-text {
    font-size: 0.85rem;
    margin-top: 20px;
    margin-bottom: 0px;
    color: #777;
  }

  
  