body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%235a7247' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-color:#f5f1e6;
    font-family: "Intel One Mono", monospace;
  }
  .back-home{
    position: absolute;
    top: 3%;
    right: 3%;
    width: 10px;
    height: 10px;
    cursor: pointer;
  }
  .container {
    display: flex;
    width: 900px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
  }
  .input-placeholder{
    
  }
  .left-side {
    flex: 1;
    background: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    
  }
  .left-side-register {
    flex: 1;
    background: white;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    
  }
  
  .left-side img {
    width: 80%;
    max-width: 300px;
    margin-bottom: 20px;
  }
  
  .right-side {
    position: relative;
    flex: 1;
    background: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .right-side h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }
  
  .right-side h2 span {
    color: #6e50f6;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  form h3 {
    margin-bottom: 20px;
    color: #333;
  }
  
  form input {
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ccc;
    outline: none;
    font-family: "Intel One Mono", monospace;
    font-size: 14px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-color: rgb(31, 105, 31);
  }
  
  form button {
    background-color: #6e50f6;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 10px;
    font-family: "Intel One Mono", monospace;

  }
  
  form a {
    text-decoration: none;
    color: #6e50f6;
    text-align: center;
    font-size: 14px;
  }
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      height: auto;
      width: 100%;
      border-radius: 0;
      box-shadow: none;
    }
  
    .left-side {
      display: none;
    }
  
    .right-side {
      width: 100%;
      padding: 30px 20px;
    }
  
    .right-side h2 {
      font-size: 20px;
    }
  
    form input, form button {
      font-size: 14px;
      padding: 10px;
    }
  
    form a {
      font-size: 13px;
    }
  }