@charset "utf-8";
/* CSS Document */

.email-verify-container {
    margin-top: 8px;
    margin-bottom: 12px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #333333;
    font-size: 13px;
    color: #2c3e50;
    transition: all 0.2s;
  }
  .verify-info-text {
    margin-bottom: 12px;
    line-height: 1.5;
    color: #495057;
  }
  .verify-code-area {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
  }
  .verify-code-input {
    flex: 1;
    min-width: 150px;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    transition: 0.2s;
  }
  .verify-code-input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255,107,107,0.2);
  }
  .verify-btn {
    background-color: #333333;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
  }
  
  .resend-link {
    background: none;
    border: none;
    color: #333333;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0 6px;
    font-weight: 500;
  }
   
  .verify-error-msg {
    color: #dc3545;
    font-size: 12px;
    margin-top: 8px;
    display: block;
  }
  .demo-code-hint {
    font-size: 11px;
    color: #6c757d;
    background: #e9ecef;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
  }
  /* 已验证标识样式（与label同行） */
  .verified-badge-label {
    display: inline-flex;
    align-items: center;
    margin-left: 12px;
    color: #28a745;
    font-size: 13px;
    font-weight: 500;
    background: #e9f7ef;
    padding: 4px 10px;
    border-radius: 30px;
    gap: 5px;
    vertical-align: middle;
  }
  .verified-badge-label i {
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
  }
  /* 保证label和badge在同一行，不影响其他表单布局 */
  .form-group.label-row-fix .form-label {
    display: inline-block;
    margin-bottom: 0;
  }
  #emailGroup .form-label {
    display: inline-block;
  }
  .email-input-wrapper {
    margin-top: 8px;
  }