/* ============================================================
   wwwroot/assets/css/modules/farmer-account.css
   云禾管家 - 注册/登录页面样式
   ============================================================ */

/* 注册页面容器 */
.register-page {
    max-width: 420px;
    margin: 0 auto;
    padding: 40px 20px 120px;
}

/* 内容区域 - 底部导航留白 */
.content-wrapper {
    padding-bottom: 120px;
    min-height: 100vh;
}

/* 顶部Logo区域 */
.register-header {
    text-align: center;
    margin-bottom: 28px;
}

/* 农场Logo图标（??/??） */
.register-logo {
    font-size: 48px;
    margin-bottom: 8px;
}

/* 页面标题 */
.register-title {
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 4px;
}

/* 页面副标题 */
.register-sub {
    font-size: 13px;
    color: #999;
    margin-bottom: 0;
}

/* 表单大输入框 */
.register-form .form-control-lg {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    font-size: 15px;
    padding: 0 16px;
}

/* 输入框聚焦态 */
.register-form .form-control-lg:focus {
    border-color: #2d6a4f;
    box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

/* 表单分区（账号信息/农场信息） */
.form-section {
    background: #fafafa;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

/* 分区标题 */
.section-title {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 12px;
}

/* 提交按钮 */
.btn-farmer-submit {
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    background: #2d6a4f;
    border: none;
    color: #fff;
    height: 50px;
}

/* 提交按钮悬停 */
.btn-farmer-submit:hover {
    background: #1e4a36;
}

.sms-code-row, .captcha-row {
    display: flex;
    gap: 10px;
    align-items: center;
}
.sms-code-row input, .captcha-row input {
    flex: 1;
    text-transform: uppercase;
}
.captcha-img {
    height: 44px;
    cursor: pointer;
    border-radius: 4px;
}
.field-error-msg {
    display: none;
    color: #dc3545;
    font-size: 0.78rem;
    margin-top: 4px;
}
.validation-summary-errors {
    background: #fff3cd;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.farmer-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 1000;
}

/* ========== 独立底部导航 ========== */
.farmer-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-around;
    padding: 8px 0 6px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
}
.farmer-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #888;
    text-decoration: none;
    font-size: 0.68rem;
    gap: 2px;
    flex: 1;
}
.farmer-bottom-nav .nav-item i {
    font-size: 1.2rem;
}
.farmer-bottom-nav .nav-item:hover {
    color: #2d6a4f;
}

/* 备案信息 */
.footer-icp {
    text-align: center;
    padding: 8px 0 70px;
    font-size: 0.7rem;
    color: #bbb;
    line-height: 1.8;
}
.footer-icp a {
    color: #bbb;
    text-decoration: none;
}

/* 页面容器 */
.register-page {
    max-width: 420px;
    margin: 0 auto;
    padding: 40px 20px 120px;
}