*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

body {
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.cui-banner {
    width: 100%;
    background-color: #4A7C59;
    color: #ffffff;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 4px;
    padding: 7px 0;
}

.page {
    display: flex;
    flex: 1;
}

.left-panel {
    background: #003087;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 52px;
    gap: 40px;
}

.logo-group{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
}

.logo-group img {
    width: 480px;
    height: 408px;
    object-fit: contain;
}

.left-inner{
    display: flex;
    flex-direction: column;
}

.brand-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header{
    font-size: 2.0rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.left-divider {
    width: 100%;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 18px;
}

.left-panel p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-top: 10px;
}

.plane-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.plane-pill{
    display: flex;
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.7;
    margin-top: 10px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 20px;
    border-radius: 8px;
    border:1px solid rgba(255, 255, 255, 0.25);
}


.right-panel {
    width: 550px;
    flex-shrink: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 52px;
    gap: 28px;
    border-left: 0.5px solid #e5e7eb;
}

.right-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #003087;
    margin-bottom: 6px;
}

.right-header p {
    font-size: 13px;
    color: #9ca3af;
}


.form-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #374151;
}

.form-group input {
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #111827;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: #003087;
    box-shadow: 0 0 0 3px rgba(0, 48, 135, 0.08);
}

.login-btn {
    margin-top: 4px;
    padding: 14px;
    background: #003087;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.15s;
}

.login-btn:hover {
    opacity: 0.82;
}

.error {
    background: #fef2f2;
    border: 0.5px solid #fecaca;
    border-radius: 6px;
    padding: 11px 16px;
    font-size: 13px;
    color: #b91c1c;
    text-align: center;
}

.links-row {
    display: flex;
    justify-content: space-between;
    padding-top: 4px;
}

.link-item span {
    font-size: 0.85rem;
    color: #9ca3af;
    display: block;
    margin-bottom: 3px;
}

.link-item a {
    font-size: 0.75rem;
    font-weight: 700;
    color: #003087;
    text-decoration: none;
}

.link-item a:hover {
    color: red;
    text-decoration: underline;
}


.logo-wrap {
    border-top: 0.5px solid #f0f0f0;
    padding-top: 24px;
    display: flex;
    justify-content: center;
}

.logo {
    max-height: 60px;
    max-width: 580px;
    object-fit: contain;
}