/* Reset and Global Styles */
* {
  box-sizing: border-box;
  word-break: keep-all;
  -webkit-text-size-adjust: none;
}

body{ background: #f8f9fb;} 

.container {
  width: 500px;
  margin: 0 auto; /* 좌우 가운데 정렬 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 화면 중앙으로 이동 */
  background-color: #fff; /* 배경색 추가 (필요에 따라 제거 가능) */
  padding: 20px; /* 여백 추가 */
  border-radius: 8px; /* 모서리를 둥글게 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 가벼운 그림자 효과 */
}

label { width : 120px;}

a:link, a:visited {
  color: #2e3f57;
  text-decoration: none;
}

a:hover, a:focus, a:active {
  background-color: transparent;
  text-decoration: none;
}

/* Form Styles */
.lm-input {
  line-height: 1.5;
  padding: 14px 16px;
  border-radius: 3px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  font-weight: 400;
  color: #2e3f57;
  width: 100%;
}

.lm-input:focus {
  border-color: #3fa3ff;
}

.lm-button {
  display: inline-block;
  padding: 14px 24px;
  background-color: #3fa3ff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.lm-button:hover {
  background-color: #2e87d0;
}

.lm-button:active {
  background-color: #1f6f9b;
}

.lm-button.color-1 {
  background-color: #3fa3ff;
}

.lm-button.color-1:hover {
  background-color: #2e87d0;
}

.lm-button.color-1:active {
  background-color: #1f6f9b;
}

.lm-button.w-full {
  width: 100%;
}

/* Layout and Containers */
.lm-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: #f1f3f4;
}

.lm-section {
  padding: 32px;
  border-radius: 20px;
  background-color: #fff;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 18px 40px rgba(112, 144, 176, 0.1);
}

.lm-label {
  font-size: 14px;
  font-weight: 500;
  color: #2e3f57;
}

.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 1rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
  padding: 10px;
  border-radius: 4px;
}
