html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #f7faff;
    overflow-x: hidden;
}
/* Main container */
.login-form-bx {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}
.login-form-bx::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 120%;
    height: 100%;
    background-color: #f9fcff;
    background-image:
        radial-gradient(circle, rgba(24, 58, 119, 0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(2, 166, 87, 0.12) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 193, 7, 0.12) 1px, transparent 1px);
    background-position: 0 0, 10px 10px, 20px 20px;
    background-size: 30px 30px;
    transform: skew(-5deg);
    z-index: 0;
    filter: brightness(1);
}
/* Form wrapper */
.inner-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    width: 100%;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.inner-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.12);
}
/* Logo */
.login-logo {
    text-align: center;
    margin-bottom: 40px;
}
.logo-icon {
    width: 90px;
}
.logo-text {
    width: 120px;
    margin-left: 10px;
}
/* Optional box wrapper */
.box-skew {
    position: relative;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
}
/* Input fields */
.form-control {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 20px;
    border: 1px solid #cbd8e4;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s;
    color: #183a77;
    background-color: #fefefe;
}
.form-control:focus {
    border-color: #183a77;
    outline: none;
}
/* Links and buttons */
.btn-link, a {
    color: #02a657;
    text-decoration: none;
}
.btn-link:hover, a:hover {
    text-decoration: underline;
}
/* Social media icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    padding-left: 0;
}
.social-icons li {
    list-style: none;
}
.social-icons li a {
    display: block;
    background: #ffffff;
    color: #183a77;
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 42px;
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}
.social-icons li a:hover {
    background: #183a77;
    color: #ffffff;
}
/* Responsive tweaks */
@media (max-width: 768px) {
    .login-form-bx::before {
        transform: none;
        width: 100%;
        left: 0;
    }
    .box-skew {
        margin-top: 30px;
    }
    .inner-content {
        padding: 40px 25px;
    }
}
@media (max-width: 480px) {
    .inner-content {
        padding: 30px 20px;
    }
    .logo-text {
        display: block;
        width: 100px;
        margin: 10px auto 0;
    }
}
.headtitle{
    border-radius: 4px;
    color: #fff;
    padding: 10px;
    background: #4e5586;
}
.headtitle h2 {
    color: #ffffff;
}
.headtitle h4 {
    color: #f9fd03;
}
.headtitle img {
    border-radius: 8px;
}
.headtitle p {
    color: #ffeeba;
    font-size: 15px;
    line-height: 1.6;
}
.warning-box {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.fixed-warning-marquee {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #ffeeba, #fff3cd, #ffeeba);
    color: #856404;
    font-size: 15px;
    padding: 10px 0;
    text-align: center;
    z-index: 9999;
    border-bottom: 1px solid #f5c46b;
    font-weight: 500;
}
