* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: linear-gradient(180deg, #f7f0ff 0%, #ddc8f5 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-card {
  width: 477px;
  background: #fff;
  border: 1px solid #dadbde;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,.10), 0 -1px 3px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 42px 56px 40px;
}

.logo {
  width: 300px;
  max-width: 100%;
  margin-bottom: 28px;
  display: block;
}

h1 {
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 16px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

form {
  width: 100%;
}

.input-wrap {
  width: 100%;
  height: 40px;
  border: 1px solid #d0d3d8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
}

.password-wrap {
  display: none;
  margin-top: 16px;
}

.mail-icon {
  width: 38px;
  color: #88919d;
  text-align: center;
  font-size: 18px;
  line-height: 1;
}

input {
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  font-size: 16px;
  font-style: italic;
  color: #333;
  padding: 0 8px 0 0;
}

input::placeholder {
  color: #6f7782;
  opacity: 1;
}

.submit {
  width: 30px;
  height: 30px;
  border: 1px solid #cfd4da;
  border-radius: 6px;
  background: #fff;
  color: #9aa4b0;
  margin-right: 6px;
  font-size: 20px;
  line-height: 24px;
  cursor: pointer;
}

.submit:hover {
  background: #f7f8fa;
}

@media (max-width: 640px) {
  body {
    padding: 24px;
  }

  .login-card {
    width: 100%;
    padding-left: 32px;
    padding-right: 32px;
  }
}