.log-content-row {
  display: flex;
  min-height: calc(100vh - 73px); /* full height minus navbar */
}

.login-image {
  flex: 1;
  background: url("image.jpg") center/cover no-repeat;
}

.log-login-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #fff;
}

.log-login-box {
  width: 100%;
  max-width: 420px;
}

.log-login-box h2 {
  margin-bottom: 20px;
  text-align: center;
}

.log-btn-primary {
  width: 100%;
  padding: 12px;
  background: #2f6df6;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 20px;
}

.log-input-group {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 15px;
  overflow: hidden;
}

.log-input-group span {
  padding: 10px 12px;
  background: #f1f1f1;
  border-right: 1px solid #ccc;
}

.log-input-group input {
  border: none;
  outline: none;
  padding: 12px;
  width: 100%;
  font-size: 14px;
}

.log-toggle-password {
  cursor: pointer;
  background: #f1f1f1;
  padding: 10px 12px;
  border-left: 1px solid #ccc;
}

.log-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 20px;
}

.log-options a {
  text-decoration: none;
  color: #2f6df6;
}

.log-btn-signin {
  width: 100%;
  padding: 12px;
  background: #2f6df6;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .login-image {
    display: none;
  }

  .log-content-row {
    justify-content: center;
  }
}
