* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
.container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
a {
  text-decoration: none;
  color: inherit;
}
body {
  background: #f2f4f7;
}
li {
  list-style: none;
}
/* header */
.header {
  /* border-bottom: 1px solid #ddd; */
  box-shadow: 10px 10px 30px #e0dddd;

  background: #ffffffe8;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}
.nav__collection {
  display: flex;
  align-items: center;
  gap: 30px;
}
.logo {
  color: #0866ff;
  font-size: 34px;
}
.nav__collection {
  color: #42b72a;
  font-size: 18px;
}
li:hover {
  text-decoration: underline;
}
/* header end */

.wrapper {
  display: flex;
  align-items: center;

  height: 80vh;
}
.form {
  display: flex;

  flex-direction: column;
}

.book__context {
  width: 50%;
}
.title {
  color: #0866ff;
  font-size: 60px;
  margin-bottom: 16px;
}
.desc {
  font-size: 28px;
}
.book__img {
  width: 50%;
}
.form {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 400px;
  margin-left: auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
}
input {
  height: 50px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-indent: 20px;
}
input::placeholder {
  font-size: 16px;
  color: #a09f9f;
}
.enter {
  padding: 14px 0;
  font-size: 20px;
  font-weight: 700;
  background: #0866ff;
  color: #fff;
  border: 1px solid #0866ff;
  border-radius: 8px;
  transition: 0.3s;
  margin-bottom: 20px;
}
.enter:hover {
  background: #2979fb;
}
.forget {
  text-align: center;
  font-size: 14px;
  color: #0866ff;
  font-weight: 600;
  margin-bottom: 20px;
}
.forget:hover {
  text-decoration: underline;
}
hr {
  border: none;
  height: 1px;
  background: #ddd;
  margin-bottom: 20px;
}
.useless {
  margin: 0 auto;
  padding: 14px 20px;
  font-size: 18px;
  text-wrap: nowrap;
  font-weight: 600;
  color: #fff;
  background: #42b72a;
  border: 1px solid #42b72a;
  border-radius: 8px;
  transition: 0.3s;
}
.useless:hover {
  background: #40ad2a;
}
.bottom {
  font-size: 14px;
  margin-left: 120px;
}
.xabar {
  text-align: center;
  color: crimson;
}
