.guest-login-page {
  max-width: 400px;
  margin: 80px auto;
  padding: 50px 40px;
}

.page-title {
  text-align: center;
  font-size: 24px;
  color: #1e1e1e;
  margin-bottom: 30px;
}

.error-msg {
  background-color: #ffecec;
  color: #d93025;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: center;
}

.guest-login-form .form-group {
  margin-bottom: 10px;
}

.guest-login-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

.guest-login-form input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.guest-login-form input:focus {
  border-color: #006f7c;
  outline: none;
}

.btn-primary {
  width: 100%;
  padding: 14px 0;
  background-color: #006f7c;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 20px;
}
.btn-primary:disabled {
  background-color: #ccc;
  cursor: default;
}

.login-links {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

.login-links a {
  color: #666;
  text-decoration: none;
  margin: 0 6px;
}

input[type="date"] {
  color: #777;
  font-weight: 400;
  font-family: inherit;
}
input[type="date"]:valid {
  color: #000;
}

/* 모달창 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-box {
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 450px;
  text-align: center;
}
.modal-box h4{
    font-size: 18px;
    line-height: 1.4;
}

.modal-content {
  margin: 20px 0;
  font-size: 16px;
  text-align: left;
  line-height: 1.5;
  color: #777;
}

.modal-content span{
    color: #333;
    font-weight: bold;
}
.modal-desc {
  font-size: 14px;
  color: red;
  margin-bottom: 20px;
}

.modal-actions button {
  padding: 10px 25px;
  margin: 0 3px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#modalCancel {
  background-color: #ccc;
}

#modalConfirm {
  background-color: #006f7c;
  color: white;
}


.birthdate-inputs {
  width: 100%;
  display: flex;
  gap: 6px;
}
.birthdate-inputs input {
  width: 100%;
  text-align: center;
}