    @font-face {
      font-family: 'Raleway';
      src: url('assets/fonts/Raleway-VariableFont_wght.ttf') format('truetype');
    }

    body {
      font-family: 'Raleway', sans-serif;
      background: #f7f7f7;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .row-full {
      width: 100%;
      max-width: 1000px;
      margin: auto;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
      background: white;
      border-radius: 12px;
      overflow: hidden;
    }

    .left-col, .right-col {
      padding: 40px 30px;
    }

    .logo {
      width: 120px;
      margin-bottom: 20px;
    }

    .form-section img {
      width: 80%;
      margin-bottom: 20px;
    }

    @media (max-width: 768px) {
      .left-col, .right-col {
        padding: 20px;
      }
    }