* {
  font-family: "Pretendard";
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fcfcfc;
  margin: 0;
  min-height: 100vh;
}

.login {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 640px;
  flex-shrink: 0;
}

.login > a {
  display: flex;
  justify-content: center;
  width: 100%;
}

.signup_logo {
  display: flex;
  justify-content: center;
  width: 100%;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 396px;
  height: 132px;
  margin-bottom: 16px;
}

form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}

.btn_login {
  display: flex;
  width: 640px;
  height: 56px;
  padding: 16px 124px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: none;
  background: var(--Secondary-400, #9ca3af);
  cursor: pointer;
  
}

.btn_text {
  color: var(--Cool-Gray-100, #f3f4f6);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

.email {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.name {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.password {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.password_2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  color: var(--Secondary-800, #1f2937);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
}

input {
  display: flex;
  width: 640px;
  height: 56px;
  padding: 16px 24px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: none;
  background: var(--Cool-Gray-100, #f3f4f6);
  outline: none;
}

input::placeholder {
  color: var(--Secondary-400, #9ca3af);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

input:hover {
  border: 1px solid;
  border-color: #3692ff;
}

.b_text {
  display: flex;
  width: 594px;
  justify-content: space-between;
  align-items: center;
}

.b_box {
  display: flex;
  width: 640px;
  height: 74px;
  padding: 16px 23px;

  align-items: center;
  border-radius: 8px;
  background: #e6f2ff;
  margin: 24px 0;
}

.panda {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--Secondary-800, #1f2937);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  gap: 3px;
}

.panda > a {
  color: var(--Primary-100, #3692ff);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.icon {
  display: flex;
  gap: 16px;
}
