@charset 'utf-8';

body {
  align-items: center;
  /* background-color: #2680ff; */
  background-color: #b7b7b7;
  display: flex;
  height: 100vh;
  justify-content: center;
  position: relative;
  width: 100%;
}

#forget_form {
  background-color: #fefefe;
  border-radius: 10px;
  padding: 30px;
  width: calc(100% - 60px);
}

.wrap {
  width: 380px;
}

h1 {
  text-align: center;
}

div {
  width: 100%;
}

input[type="text"],
input[type="email"],
textarea {
  border-radius: 5px;
  border: 1px solid #aaa;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px;
  padding: 0.5em 0.5em;
  width: calc(100% - 1em);
}

.send_button > button {
  background-color: #4756ca;
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  margin: 20px 0;
  padding: 1em;
  transition: 0.3s;
  width: 100%;
}

.send_button > button:disabled {
  background-color: #aaa;
  color: #000;
  cursor: default;
}

#logo {
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
  width: 300px;
}

#logo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.login-button {
  text-align: right;
}

.close_button button {
  background-color: #ca5b47;
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  margin: 20px 0;
  padding: 1em;
  transition: 0.3s;
  width: 100%;
}

.close_button button:hover {
  opacity: 0.5;
}

.explanation {
  color: #aaa;
}

.copyright {
  bottom: 0;
  color: #000;
  left: 0;
  padding-bottom: 10px;
  position: fixed;
  text-align: center;
  user-select: none;
}
