/* ===== BenNavi Tenant — Frontend Styles ===== */

/* Auth pages */
.bnt-auth-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #f5f7f5;
}

.bnt-auth-container {
    width: 100%;
    max-width: 480px;
}

.bnt-auth-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 36px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.bnt-auth-header {
    text-align: center;
    margin-bottom: 28px;
}

.bnt-auth-header h1 {
    font-size: 22px;
    font-weight: 500;
    color: #2b2d2b;
    margin: 0 0 8px;
    letter-spacing: .04em;
}

.bnt-auth-header p {
    font-size: 13px;
    color: #5c5f5c;
    margin: 0;
}

/* Form fields */
.bnt-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bnt-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bnt-field label {
    font-size: 13px;
    font-weight: 500;
    color: #2b2d2b;
}

.bnt-field input[type="text"],
.bnt-field input[type="email"],
.bnt-field input[type="password"],
.bnt-field input[type="url"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d0d3d0;
    border-radius: 8px;
    font-size: 15px;
    color: #2b2d2b;
    background: #fff;
    transition: border-color .15s;
    box-sizing: border-box;
}

.bnt-field input:focus {
    outline: none;
    border-color: #8b7354;
    box-shadow: 0 0 0 3px rgba(139,115,84,.12);
}

.bnt-field-hint {
    font-size: 12px;
    color: #888;
}

/* Buttons */
.bnt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all .15s;
    text-decoration: none;
    border: none;
    letter-spacing: .02em;
}

.bnt-btn-primary {
    background: #2b2d2b;
    color: #fff;
}

.bnt-btn-primary:hover {
    background: #444;
}

.bnt-btn-outline {
    background: transparent;
    color: #5c5f5c;
    border: 1px solid #d0d3d0;
}

.bnt-btn-outline:hover {
    background: #f5f5f5;
    color: #2b2d2b;
}

/* Alerts */
.bnt-alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.bnt-alert p {
    margin: 0;
}

.bnt-alert-error {
    background: #fdf2f2;
    color: #993333;
    border: 1px solid #f0d0d0;
}

.bnt-alert-info {
    background: #f0f8f0;
    color: #336633;
    border: 1px solid #c8e0c8;
}

/* Footer link */
.bnt-auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: #5c5f5c;
}

.bnt-auth-footer a {
    color: #8b7354;
    font-weight: 500;
    text-decoration: none;
}

.bnt-auth-footer a:hover {
    text-decoration: underline;
}

/* Tabs (mypage) */
.bnt-tabs {
    display: flex;
    border-bottom: 1px solid #d0d3d0;
    margin-bottom: 24px;
    gap: 0;
}

.bnt-tab {
    flex: 1;
    text-align: center;
    padding: 10px 4px;
    font-size: 13px;
    font-weight: 500;
    color: #5c5f5c;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all .15s;
}

.bnt-tab:hover {
    color: #2b2d2b;
}

.bnt-tab.active {
    color: #2b2d2b;
    border-bottom-color: #2b2d2b;
}

/* Info table (mypage) */
.bnt-info-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bnt-info-row {
    display: flex;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

.bnt-info-row:last-child {
    border-bottom: none;
}

.bnt-info-label {
    width: 140px;
    flex-shrink: 0;
    font-size: 13px;
    color: #5c5f5c;
    font-weight: 500;
}

.bnt-info-value {
    font-size: 14px;
    color: #2b2d2b;
}

/* Responsive */
@media (max-width: 520px) {
    .bnt-auth-card {
        padding: 28px 20px;
    }

    .bnt-info-row {
        flex-direction: column;
        gap: 4px;
    }

    .bnt-info-label {
        width: auto;
    }
}
