 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #224b41;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
    }

    .container {
      width: 90%;
      max-width: 1000px;
      display: flex;
      flex-wrap: wrap;
      border-radius: 20px;
      overflow: hidden;
      background-color: #fff;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .left {
      flex: 1;
      min-width: 300px;
      position: relative;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .left img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .promo-text {
      position: absolute;
      top: 10%;
      left: 5%;
      right: 5%;
      color: white;
      background: rgba(0, 0, 0, 0.5);
      padding: 20px;
      border-radius: 10px;
      z-index: 2;
      text-align: center;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 1s ease forwards;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .promo-text h1 {
      font-size: 28px;
      margin-bottom: 10px;
    }

    .promo-text span {
      color: #ffcc00;
    }

    .promo-text p {
      font-size: 15px;
      line-height: 1.4;
      color: #f0f0f0;
    }

    .right {
      flex: 1;
      min-width: 300px;
      background: #224b41;
      color: #fff;
      padding: 60px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .right h2 {
      font-size: 28px;
      margin-bottom: 30px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 5px;
      font-weight: 600;
    }

    .form-group input,
    select {
      width: 100%;
      padding: 10px 12px;
      border-radius: 8px;
      border: none;
      font-size: 14px;
      color: #333;
      margin-bottom: 20px;
    }

    select {
      border: 1px solid #ccc;
      background-color: #fff;
      appearance: none;
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='14' height='10' viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23996' d='M7 10L0 0h14L7 10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-size: 12px;
    }

    select:focus {
      border-color: #009688;
      box-shadow: 0 0 0 2px rgba(0,150,136,0.2);
      outline: none;
    }

    .login-btn {
      background-color: #77bfb2;
      border: none;
      padding: 12px;
      width: 100%;
      border-radius: 5px;
      font-weight: bold;
      color: #fff;
      cursor: pointer;
    }

    .login-btn:hover {
      background-color: #66a89c;
    }

    .footer {
      font-size: 12px;
      margin-top: 20px;
    }

    .footer a {
      color: #77bfb2;
      text-decoration: none;
    }

    @media (max-width: 768px) {
      body {
        height: auto;
        padding: 30px 0;
      }

      .container {
        flex-direction: column;
      }

      .right {
        padding: 30px 20px;
      }

      .promo-text {
        position: static;
        margin: 20px;
        background: rgba(0, 0, 0, 0.7);
        animation: none;
        opacity: 1;
        transform: none;
      }
    }

    @media (max-width: 480px) {
      .promo-text h1 {
        font-size: 22px;
      }

      .promo-text p {
        font-size: 13px;
      }

      .right h2 {
        font-size: 24px;
      }

      .login-btn,
      .form-group input,
      select {
        font-size: 16px;
        padding: 14px;
      }
    }