* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #ffffff;
}

/* ANA KAPSAYICI */
.web-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  padding: 40px;
  gap: 60px;
}

/* SOL PANEL */
.left-panel {
  width: 420px;
  background: #7f9272;
  border-radius: 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-cta {
  background: #6f5be7;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}

/* SAĞ PANEL */
.right-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOGO + CARD */
.login-wrapper {
  width: 420px;
  text-align: center;
}

.brand img {
  height: 42px;
  margin-bottom: 20px;
}

/* CARD */
.login-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* METİNLER */
.card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.card-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 28px;
}

/* FORM */
.form-group {
  text-align: left;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.input-box {
  background: #f3f5f4;
  border-radius: 14px;
  padding: 12px 14px;
}

.input-box input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
}

/* ALT SATIR */
.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin: 10px 0 22px;
}

.remember {
  display: flex;
  align-items: center;
  gap: 6px;
}

.forgot {
  text-decoration: none;
  color: #000;
}

/* BUTON */
.login-btn {
  width: 100%;
  background: #7f9272;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 18px;
  font-size: 15px;
  cursor: pointer;
}