/* ——— 全局重置 ——— */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Open Sans', sans-serif;
  background: #ededed;
  height: 100vh;
  overflow: hidden;
}

/* ——— 背景视频 ——— */
#bgVideo {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: -1;
}

/* ——— 主容器 ——— */
.dowebok {
  position: absolute; left: 50%; top: 50%;
  width: 1000px; 
  height: 600px;
  padding: 0;
  transform: translate(-50%, -50%);
  background: #fff;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ——— 表单布局 ——— */
.form {
  width: 100%;
  padding: 80px 100px;
  text-align: center;
}
.icon {
  width: 70px;
  margin-bottom: 20px;
}
h2 {
  font-size: 26px; 
  color: #333; 
  margin-bottom: 15px;
}
.subtitle {
  font-size: 15px; 
  color: #666; 
  margin-bottom: 10px; 
  line-height: 1.4;
}

.subtitle-forgot {
  font-size: 15px; 
  color: #666; 
  margin-bottom: 35px; 
  line-height: 1.4;
}

/* ——— 输入框 ——— */
input {  
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 25px auto 0;
  padding-bottom: 5px;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.4);
  text-align: center;
  outline: none;
  background: none;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
}

/* ——— 错误信息 ——— */
.error-message {
  color: #e74c3c;
  font-size: 13px;
  margin: 8px 0 0;
}

/* ——— 按钮 ——— */
button.submit {
  display: block;
  width: 260px; height: 36px;
  margin: 35px auto 0;
  border-radius: 30px;
  background: #d4af7a;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
button.submit:hover { background: #c9a06e; }

/* ——— 返回链接 ——— */
.back {
  margin-top: 20px;
}
.back a, .resend a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
}
.back a:hover, .resend a:hover {
  color: #333;
}

.resend {
  margin-top: 15px;
}

.rights {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  font-size: 12px; color: #aaa;
}