body {
    margin: 0;
    font-family: "Montserrat", serif;
}
  
  .container {
    display: flex;
    height: 100%;
  }
  
  .right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
  }
  
  .left {
    flex: 1;
    display: flex;
    flex-direction: column; /* Elemanları dikey hizalar */
    justify-content: center; /* Dikeyde ortalar */
    font-size: 24px;
    font-weight: bold;
    color: white;
    background-color: red; /* Mavi */
  }
  
  
  .right {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .login-form {
    padding: 20px 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
  }
  
  .logo {
    max-width: 100px;
  }
  
  .login-form h2 {
    font-size: 32px;
    color: black;
    font-weight: 600;
    margin-bottom: -5px;
  }

  .login-form p {
    font-size: 13px;
    color: black;
    font-weight: 400;
    margin-bottom: 30px;
  }
  
  .form-group {
    margin-bottom: 20px;
    text-align: left;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
  }
  
  .form-group input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: "Montserrat", serif;
  }
  
 /* Buton Stilleri */
button {
    width: 100%;
    height: 45px;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    background-color: red;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: "Montserrat", serif;
  }
  
  button:hover {
    background-color: rgb(187, 2, 2);
  }
  
  /* Separator (VEYA kısmı) */
  .separator {
    display: flex;
    align-items: center;
    margin: 20px 0;
    text-align: center;
    color: #999;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  
  .separator::before,
  .separator::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e8e8e8c1;
  }
  
  .separator span {
    margin: 0 20px;
    font-size: 14px;
    color: #d2cfcfc1;
    font-weight: 400;
  }
  
  /* Google Login Butonu */
  .google-login {
    background-color: #e8e8e8c1;
    color: black;
    border: none;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .google-login:hover {
    background-color: #ddd;
  }
  
  /* Üye Ol kısmı */
  .signup-text {
    margin-top: 20px;
    font-size: 25px;
    color: #555;
    text-align: center;
  }
  
  .signup-text a {
    text-decoration: none;
    color: red;
    transition: color 0.3s;
    
  }
  
  .signup-text a:hover {
    color: red;
  }

  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
  }
  
  /* Input ve İkon Stilleri */
  .input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .input-with-icon i {
    position: absolute;
    left: 20px;
    color: #ddd;
    font-size: 20px;
    transition: color 0.3s ease-in-out; /* Renk değişimi animasyonu */
  }
  
  .input-with-icon input {
    width: 100%;
    height: 50px;
    padding: 20px 20px 20px 55px;
    font-size: 16px;
    border: 1px solid hsla(0,0%,91%,.755);
    border-radius: 10px;
    box-sizing: border-box;
    transition: border-color 0.3s ease-in-out;
  }

  /* Input Tıklandığında (Focus Durumu) */
.input-with-icon input:focus {
  border-color: red; /* Mavi kenar rengi */
  outline: none; /* Varsayılan mavi çerçeveyi kaldırmak için */
}

/* Input tıklandığında ikon rengini değiştir */
.input-with-icon input:focus + i {
  color: red; /* Border ile aynı renk */
}

  .reset-pass{
    text-decoration: none;
    text-align: right;
  }

  .reset-pass a{
    text-decoration: none;
    color: red;
    font-size: 15px;
  }

  .reset-pass a:hover{
    color: #c33c2f;
  }
  
  /* Mobil ekranlar için düzenleme */
  @media (max-width: 768px) {
    .left {
      display: none;
    }
    .right {
      flex: 1;
    }
  }



  .llogo{
    margin-left: 20px;
    margin-right: 20px;
  }

  .ltxt{
    margin-left: 20px;
    margin-right: 20px;
  }

  .ltxt p{
      font-size: 18px;
      font-weight: 400;
  }

  .ltxt h3{
    font-size: 36px;
  }

  .checkimg{
    width: 25%;
  }
  