/* OW Provider Gate v3 */

#ow-gate-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 40px 16px;
    background: #FFFCF8;
}

#ow-gate-card {
    background: #fff;
    border: 1px solid #e8ddd3;
    border-radius: 18px;
    padding: 40px 38px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 8px 40px rgba(0,0,0,.08);
    text-align: center;
}

.ow-logo-area {
    margin-bottom: 20px;
}
.ow-logo-area img {
    max-height: 60px;
    width: auto;
}

.ow-gate-icon {
    font-size: 44px;
    margin-bottom: 12px;
}

#ow-gate-card h2 {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #5C8607 !important;
    margin: 0 0 10px !important;
    border: none !important;
    padding: 0 !important;
}

.ow-gate-desc {
    font-size: 14px !important;
    color: #777 !important;
    margin: 0 0 24px !important;
    line-height: 1.6 !important;
}
.ow-gate-desc a {
    color: #5C8607 !important;
    font-weight: 600 !important;
}

.ow-gate-err {
    background: #fdf0f0;
    border: 1px solid #f0c0bb;
    border-radius: 9px;
    padding: 12px 16px;
    font-size: 13px;
    color: #c0392b;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.5;
}

#ow-login-form {
    text-align: left;
}

.ow-field {
    margin-bottom: 18px;
}

.ow-field label {
    display: block !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #444 !important;
    margin-bottom: 7px !important;
}

.ow-field input[type="text"],
.ow-field input[type="email"],
.ow-field input[type="password"] {
    width: 100% !important;
    padding: 12px 14px !important;
    border: 1.5px solid #dcd3c4 !important;
    border-radius: 9px !important;
    font-size: 14px !important;
    color: #020101 !important;
    background: #FFFCF8 !important;
    font-family: inherit !important;
    outline: none !important;
    box-sizing: border-box !important;
    transition: border-color .2s, box-shadow .2s !important;
    -webkit-appearance: none !important;
}
.ow-field input[type="text"]:focus,
.ow-field input[type="password"]:focus {
    border-color: #5C8607 !important;
    box-shadow: 0 0 0 3px rgba(92,134,7,.12) !important;
    background: #fff !important;
}

.ow-pw-row {
    position: relative;
    display: flex;
    align-items: center;
}
.ow-pw-row input {
    flex: 1 !important;
    padding-right: 46px !important;
}
.ow-eye {
    position: absolute !important;
    right: 12px !important;
    background: none !important;
    border: none !important;
    font-size: 17px !important;
    cursor: pointer !important;
    padding: 0 !important;
    color: #aaa !important;
    box-shadow: none !important;
    line-height: 1 !important;
    transition: color .15s !important;
}
.ow-eye:hover { color: #5C8607 !important; }

.ow-check label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #666 !important;
    cursor: pointer;
}
.ow-check input[type="checkbox"] {
    accent-color: #5C8607;
    width: 15px;
    height: 15px;
    cursor: pointer;
    flex-shrink: 0;
}

.ow-submit-btn {
    display: block !important;
    width: 100% !important;
    padding: 14px !important;
    background: #5C8607 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 30px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    font-family: inherit !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: background .2s, transform .15s !important;
    margin-top: 6px !important;
    box-shadow: 0 4px 14px rgba(92,134,7,.25) !important;
    letter-spacing: .3px !important;
    line-height: 1.4 !important;
}
.ow-submit-btn:hover {
    background: #4A6D05 !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}
.ow-submit-btn:active {
    transform: translateY(0) !important;
}

.ow-links {
    text-align: center;
    margin-top: 16px;
}
.ow-forgot {
    font-size: 13px !important;
    color: #5C8607 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}
.ow-forgot:hover {
    text-decoration: underline !important;
}

.ow-support {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f0ebe4;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}
.ow-support a {
    color: #5C8607 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}
.ow-support a:hover {
    text-decoration: underline !important;
}

/* No access card */
.ow-logout-lnk {
    display: inline-block;
    margin-top: 16px;
    padding: 9px 24px;
    border: 1.5px solid #5C8607;
    border-radius: 30px;
    color: #5C8607 !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .2s;
}
.ow-logout-lnk:hover {
    background: #5C8607;
    color: #fff !important;
}
