/* Background Gradient */
body {
    position: relative;
    background: linear-gradient(135deg, #b55b56 0%, #c48a84 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

header.ongc-header {
    width: 100%;
}

.before_login_menu a {
    color: #fff;
    text-decoration: none;
}

body:before {
    content:"";
    background: url('/images/login_img.jpeg');
    background-size:cover;
    width: 100%;
    height: 100%;
    left:0;
    top:0;
    position: absolute;
    z-index: -1;
    opacity: 1.0;
}

/* Login Page Wrapper */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Login Card */
.login-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.2);
    padding: 40px 30px;
    width: 100%;
    max-width: 380px;
}

/* Headings */
.login-card h3 {
    font-weight: 700;
    color: #2b2b2b;
}

/* Input Fields */
.login-card .form-control {
    border-radius: 5px;
    height: 40px;
    font-size: 14px;
    padding-right: 35px;
}

/* Password Toggle Icon */
.toggle-password {
    position: absolute;
    top: 9px;
    right: 12px;
    cursor: pointer;
    color: #a44b46;
}

/* Forgot Password Link */
.forgot-link {
    font-size: 13px;
    text-decoration: none;
    color: #7c2927;
    font-weight: 600;
}
.forgot-link:hover {
    text-decoration: underline;
}

/* Login Button */
.btn-login {
    background: #983C38;
    border: none;
    color: #fff;
    padding: 10px 40px;
    border-radius: 20px;
    font-weight: 600;
    transition: background 0.3s;
}
.btn-login:hover {
    background: #7c2f2c;
}

.help-container .card {
    height: 100vh;
    overflow: scroll;
}