﻿:root{
    --blue: #0056B9; --blue-500: #1976d2; --blue-600: #0b3d8b;
    --bg: #eef3f8; --text: #111827; --muted: #6b7280;
    --card: #ffffff; --card-border: rgba(13, 71, 161, .10);
    --shadow-soft: 0 10px 30px rgba(2,6,23,.10);
}

body{
    margin: 0;
    background: radial-gradient(1200px 700px at 20% -10% #e9f2ff 0%, transparent 60%), var(--bg); 
    font-family: 'Inter', sans-serif;
    color: var(--text);
}

.portal-wrap{
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.portal-card {
    width: 100%;
    max-width: 550px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .96));
    border: 1px solid var(--card-border);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    backdrop-filter: saturate(150%) blur(4px);
}

.portal-card-register {
    max-width: 750px;
}

.brandbar {
    background: var(--blue);
    padding: 0;
}

.brandbar-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
}

.brand-title{
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: .2px;
}

.brand-badge{
    color: #e2edff;
    font-size: 12px;
}

.card-body{
    padding: 26px 26px 20px 26px;
}
.card-title {
    margin: 0 0 2px 0;
    font-size: 28px;
    font-weight: 900;
    text-align: center;
}
.card-sub {
    margin: 0 0 20px 0;
    color: #708090;
    text-align: center;
}

.dxflItem{
    margin-bottom: 14px;
}


.dxflItemRequiredMark{
    color: #c62828 !important;
}

.form-two-col .dxflCLLSys{
    display: grid;
    grid-template-columns: 1fr;
}

.input-panel{
    background: #fff;
    border: 1px solid #e7eef7;
    border-radius: 10px;
    padding: 14px;
}

.btn-row{
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 6px;
}

.btn-primary {
    background: var(--blue);
    border-color: var(--blue-500);
    color: #fff !important;
    font-weight: 800;
    letter-spacing: .2px;
    border-radius: 4px;
    padding: 4px 8px;
    box-shadow: 0 4px 12px rgba(25, 118, 210, .25);
}

.btn-primary:hover{
    filter: brightness(1.06);
}

.btn-ghost {
    background: #eff3f9 !important;
    color: var(--blue) !important;
    border: 1px solid #d9e3ef !important;
    font-weight: 800;
    border-radius: 4px;
    padding: 4px 8px;
}

.form-links{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.form-links a{
    color: var(--blue);
    text-decoration: none;
    font-weight: 700;
}

    .form-links a:visited {
        color: var(--blue);
    }

.form-links a:hover{
    text-decoration: underline;
}

.form-note{
    color: #6b7280;
    font-size: 12px;
    margin-top: 10px;
}