.auth-box {
    max-width: 1500px;
    margin: 1px auto;
    background: #fff;
    border-radius: 10px;
    position: relative;
    -webkit-box-shadow: 0 1px 15px rgb(0 0 0 / 4%), 0 1px 6px rgb(0 0 0 / 4%);
    box-shadow: 0 1px 15px rgb(0 0 0 / 4%), 0 1px 6px rgb(0 0 0 / 4%);
    padding-left: 15px;
    padding-right: 15px;
}
.d-table {
    width: 100%;
     height: 1%; 
} 
.form-left-content {
    padding: 28px 30px 50px 30px;
}
.form-left-content .login-links a {
    display: block;
    margin-top: 15px;
    line-height: 1;
    padding: 10px 15px;
    border-radius: 30px;
    text-align: center;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}
.form-content .heading::before {
    content: '';
    background: #2962ff;
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
}
p{
    text-align: justify;
}
/* ====================== News Ticker (login page) ====================== */
.news-ticker-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin: 16px 0 20px 0;
    background: linear-gradient(90deg, #1d3557 0%, #2a4a7a 100%);
    color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    font-size: 0.95rem;
    line-height: 1.5;
}
.news-ticker-label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #e63946;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    white-space: nowrap;
}
.news-ticker-icon {
    font-size: 1.1rem;
}
.news-ticker-viewport {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}
.news-ticker-track {
    display: inline-flex;
    white-space: nowrap;
    animation: news-ticker-scroll 60s linear infinite;
    padding-left: 100%;
}
.news-ticker-wrapper:hover .news-ticker-track {
    animation-play-state: paused;
}
.news-ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 24px;
    white-space: nowrap;
}
.news-ticker-link {
    color: #ffd166;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 4px;
}
.news-ticker-link:hover {
    color: #fff;
    text-decoration: none;
}
.news-ticker-sep {
    margin-left: 24px;
    opacity: 0.5;
}
@keyframes news-ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 600px) {
    .news-ticker-wrapper { font-size: 0.85rem; }
    .news-ticker-label { padding: 8px 10px; font-size: 0.75rem; }
}
