@charset "UTF-8";

.loginBody {
  width: 100vw;
  height: 100vh;
  background-color: #eee !important;
}

.loginHeader {
  width: 100vw;
  height: 60px;
  background-color: #00b9af;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.3);
}

.logo img {
  display: block;
  margin: 0 auto;
  height: 50px;
  padding: 5px 0;
}

.inputArea {
  width: 500px;
  height: 500px;
  margin: 60px auto 20px auto;
  background-color: #fff;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.inputArea p {
  text-align: center;
  font-size: 1.2rem;
  border-bottom: 1px solid #dbe2e5;
  padding: 15px 0 5px 0;
}

.formArea {
  width: 300px;
  margin: 0 auto;
  position: relative;
}

.formArea span {
  font-size: 0.7rem;
  color: #333;
}

.formArea input {
  outline: none;
  border: none;
  border-bottom: 1px solid #000;
  width: 100%;
  padding: 5px;
  display: flex;
  font-size: 1rem;
}

.formArea i {
  position: absolute;
  right: -5px;
  top: 35px;
  cursor: pointer;
}

.formArea button[type="submit"],
.formArea a.submit {
  display: inline-block;
  width: 250px;
  background-color: #1379bb;
  border-radius: 4px;
  color: #fff;
  font-size: 0.9rem !important;
  padding: 5px 0 !important;
}

.formArea button[type="submit"]:hover,
.formArea a.submit:hover {
  background-color: #3b9cdb;
}

.forgotPassword {
  text-align: center;
  font-size: 0.8rem;
}

.forgotPassword a {
  color: #1379bb;
}

.forgotPassword a:hover {
  color: #c00;
}

.noteArea {
  width: 500px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.noteTitle {
  padding: 15px;
  color: #1379bb;
  cursor: pointer;
  position: relative;
}

.noteTitle::after {
  border-right: solid 2px #1379bb;
  border-top: solid 2px #1379bb;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 38%;
  transform: rotate(135deg);
  transition:
    transform 0.3s ease-in-out,
    top 0.3s ease-in-out;
  width: 8px;
}

.noteTitle.open::after {
  top: 45%;
  transform: rotate(-45deg);
}

.noteTitle:hover {
  color: #c00;
}

.noteCont {
  display: none;
  padding: 15px;
  color: #666;
}

input[type="checkbox"] {
  display: none;
}
