@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
  }
  
  body, html {
    height: 100%;
    background-color: #f4f4f4;
  }
  
  .container {
    display: flex;
    width: 100%;
    height: 100vh; /* Tam ekran yükseklik */
    background: #fff;
  }
  
  .image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e0e0e0;
    overflow: hidden; /* Resmin taşmasını engelle */
  }
  
  .responsive-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi tam ekran kapla */
  }
  
  .form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
  }
  
  h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
  }
  
  input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }
  
  button {
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  
  button:hover {
    background: #0056b3;
  }
  
  @media (max-width: 768px) {
    .image-section {
      display: none; /* Mobilde resmi kaldır */
    }
    .container {
      flex-direction: column;
    }
    .form-section {
      padding: 10px;
    }
  }