body {
    background-image: url("/images/entryBackground.png");
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
 .login-container {
  background-color: #f9f4ef;
  width: 90%;              
  max-width: 450px;        
  min-height: 400px;       
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  margin: 40px auto;
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #6d5b49;
  box-sizing: border-box;
}

.login-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: bold;
}

.login-info {
  text-align: center;
  margin: 15px 0;
  font-size: 18px;
  font-weight: bold;
}

.login-button,
.register-button {
  display: block;
  width: 80%;
  padding: 12px;             
  margin: 10px auto;
  font-size: 18px;
  font-weight: bold;
  color: #6d5b49;
  background-color: #f9f4ef;
  border: 2px solid #6d5b49;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-button:hover,
.register-button:hover {
  background-color: #e0d3c1;
}

.login-button-container,
.register-button-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* 📱 Mobil uyum */
@media (max-width: 600px) {
  .login-title {
    font-size: 22px;
  }
  .login-info {
    font-size: 16px;
  }
  .login-button,
  .register-button {
    font-size: 16px;
    width: 90%;
    padding: 10px;
  }
}


