    :root {
      --primary-color: #3a7bd5;
      --secondary-color: #00d2ff;
      --accent-color: #ff4b2b;
      --dark-color: #1a2a6c;
      --light-color: #f8f9fa;
    }

    body {
      background: linear-gradient(-45deg, #1a2a6c, #3a7bd5, #00d2ff);
      background-size: 400% 400%;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 20px;
    }

    @keyframes gradientBG {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .login-container {
      display: flex;
      width: 100%;
      max-width: 1000px;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 15px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      position: relative;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .login-image {
      flex: 1;
      background: 
      url('loginnn.jpg') center center;
      background-size: cover;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      color: white;
    }

    .login-image-content {
      padding: 30px;
      text-align: center;
      z-index: 2;
    }

    .login-image h2 {
      font-weight: 700;
      margin-bottom: 20px;
      font-size: 2rem;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .login-image p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }

    .login-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .login-form {
      flex: 1;
      padding: 50px;
      max-width: 500px;
      position: relative;
    }

    .login-form::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    }

    .form-control {
      border-radius: 8px;
      padding: 15px 20px;
      border: 1px solid #e0e0e0;
      transition: all 0.3s;
      font-size: 1rem;
    }

    .form-control:focus {
      border-color: var(--secondary-color);
      box-shadow: 0 0 0 0.25rem rgba(0, 210, 255, 0.25);
      border-radius: 8px;
    }

    .form-control::placeholder {
      color: #b0bec5;
      font-size: 0.95rem;
    }

    .btn-login {
      background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
      color: white;
      border: none;
      border-radius: 8px;
      padding: 15px;
      font-weight: 600;
      transition: all 0.3s;
      letter-spacing: 0.5px;
      font-size: 1rem;
      box-shadow: 0 4px 15px rgba(58, 123, 213, 0.3);
    }

    .btn-login:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(58, 123, 213, 0.4);
    }

    .google-btn {
      background-color: white;
      color: #4285F4;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 12px;
      font-weight: 600;
      transition: all 0.3s;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .google-btn:hover {
      background-color: #f8f9fa;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .footer-text {
      font-size: 14px;
      color: #616161;
    }

    .divider {
      display: flex;
      align-items: center;
      margin: 25px 0;
    }

    .divider::before, .divider::after {
      content: "";
      flex: 1;
      border-bottom: 1px solid #e0e0e0;
    }

    .divider-text {
      padding: 0 15px;
      color: #9e9e9e;
      font-size: 0.9rem;
    }

    .floating-label {
      position: relative;
      margin-bottom: 1.8rem;
    }

    .floating-label label {
      position: absolute;
      top: 15px;
      left: 20px;
      color: #9e9e9e;
      transition: all 0.3s;
      pointer-events: none;
      background: white;
      padding: 0 5px;
      font-size: 0.95rem;
    }

    .floating-label input:focus + label,
    .floating-label input:not(:placeholder-shown) + label {
      top: -10px;
      left: 15px;
      font-size: 0.8rem;
      color: var(--primary-color);
    }

    .forgot-password {
      text-align: right;
      margin-top: -15px;
      margin-bottom: 20px;
    }

    .forgot-password a {
      color: #616161;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
    }

    .forgot-password a:hover {
      color: var(--accent-color);
      text-decoration: underline;
    }

    .form-check-input:checked {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
    }

    .form-check-label {
      color: #616161;
      font-size: 0.9rem;
    }

    .login-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .login-header h4 {
      font-weight: 700;
      color: var(--dark-color);
      font-size: 1.8rem;
      margin-bottom: 10px;
    }

    .login-header p {
      color: #757575;
      font-size: 1rem;
    }

    .signup-link {
      color: var(--primary-color);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
    }

    .signup-link:hover {
      color: var(--dark-color);
      text-decoration: underline;
    }

    .company-logo {
      width: 120px;
      margin-bottom: 20px;
    }

    @media (max-width: 768px) {
      .login-container {
        flex-direction: column;
      }
      
      .login-image {
        min-height: 200px;
        padding: 30px;
      }

      .login-form {
        padding: 30px;
      }

      body {
        padding: 15px;
      }
    }

    /* Animated floating elements */
    .floating-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: -1;
    }

    .floating-element {
      position: absolute;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      animation: float 15s infinite linear;
    }

    @keyframes float {
      0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
      }
      100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
      }
    }
       .container-box {
      max-width: 1000px;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    
    .container-box:hover {
      transform: translateY(-5px);
    }

    .form-section {
      padding: 50px;
      background-color: #fff;
      position: relative;
    }

    .form-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    }

    .form-control {
      padding: 12px 15px;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
      transition: all 0.3s ease;
    }

    .form-control:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.15);
    }

    .form-label {
      font-weight: 500;
      color: #4a5568;
      margin-bottom: 8px;
    }

    .btn-teal {
      background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
      color: #fff;
      padding: 12px;
      border-radius: 8px;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      border: none;
    }

    .btn-teal:hover {
      background-color: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(32, 201, 151, 0.3);
    }

    .footer-text {
      text-align: center;
      margin-top: 25px;
      color: #4a5568;
    }

    .footer-text a {
      text-decoration: none;
      font-weight: 600;
      color: var(--secondary-color);
      transition: color 0.3s ease;
    }

    .footer-text a:hover {
      color: var(--primary-dark);
    }

    .footer-text small {
      display: block;
      margin-top: 15px;
      color: #718096;
      font-size: 0.85rem;
    }

    .image-section {
      background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
      position: relative;
      overflow: hidden;
    }

    .image-section::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
    }

    .image-section::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
    }

    .image-content {
      text-align: center;
      color: white;
      z-index: 1;
    }

    .image-content i {
      font-size: 4rem;
      margin-bottom: 20px;
      color: rgba(255, 255, 255, 0.9);
    }

    .image-content h3 {
      font-weight: 700;
      margin-bottom: 15px;
    }

    .image-content p {
      opacity: 0.9;
      font-size: 0.95rem;
    }

    .form-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .form-header h5 {
      font-weight: 700;
      color: var(--secondary-color);
      margin-bottom: 5px;
    }

    .form-header h4 {
      font-weight: 700;
      color: #2d3748;
      margin-bottom: 10px;
    }

    .form-header p {
      color: #718096;
    }

    .input-group-text {
      background-color: #f8fafc;
      border: 1px solid #e2e8f0;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .input-group-text:hover {
      background-color: #f1f5f9;
    }

    .form-check-input:checked {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
    }

    .form-check-label a {
      color: var(--secondary-color);
      text-decoration: none;
      font-weight: 500;
    }

    .form-check-label a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .form-section {
        padding: 40px 25px;
      }
      
      .container-box {
        margin: 20px;
      }
    }