/*!*************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss ***!
  \*************************************************************************************************************/
* {
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
label {
  font-family: sans-serif;
  color: #333333;
  margin: 0;
}

input {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  border-radius: 4px;
}
input::placeholder {
  color: #c2c2c2;
}

button {
  border: none;
  outline: none;
  padding: 5px;
  border-radius: 4px;
}
button:hover {
  cursor: pointer;
  opacity: 0.7;
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}
.container--bg {
  background-color: #f2dbd3;
}

.header {
  padding: 10px;
  background-color: #f2dbd3;
}
.header_inner {
  max-width: 933px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.logo {
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
}

.logout {
  font-size: 14px;
  background-color: transparent;
  border: none;
  outline: none;
}
.logout:hover {
  cursor: pointer;
}

.formBox {
  width: 300px;
  height: 285px;
  border-radius: 8px;
  border: 1px solid #c2c2c2;
  padding: 10px;
  background-color: white;
}
.formBox_title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 10px;
}
.formBox_row {
  padding: 3px 0;
}

.label {
  font-size: 10px;
}

.input {
  border: 1px solid #c2c2c2;
  padding: 5px;
  width: 100%;
}

.button {
  background-color: #00bbff;
  outline: 1px solid #018abb;
  width: 100%;
  color: white;
}

.auth-navigate {
  padding: 10px 0;
}
.auth-navigate_link {
  font-size: 14px;
  text-align: center;
  display: block;
  color: #008cff;
  text-decoration: underline;
}
.auth-navigate_link:hover {
  cursor: pointer;
}

.head-page {
  display: flex;
  flex-direction: column;
}

.title {
  font-size: 46px;
}

.sub-title {
  font-size: 16px;
}

.buttons {
  display: flex;
  justify-content: space-between;
  max-width: 500px;
  width: 100%;
  margin: 20px auto;
}
.buttons_item {
  width: 33%;
  border: none;
  padding: 20px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  margin: 0 3px;
  transform: translateY(0);
  transition: 0.3s;
  outline: 1px solid transparent;
}
.buttons_item:hover {
  transform: translateY(-3px);
  transition: 0.3s;
  box-shadow: 0 4px 4px 0 #c2c2c2;
  outline: 1px solid #c2c2c2;
}
