﻿:root {
    --fallback-font-stack: Helvetica, Arial, serif;
}

/* Outer container */
.LoginScreen {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 100vh;
    background: #111827;
}

/* Left side panel */
.Rectangle1 {
    flex: 1; /* take half the width */
    background: #374151;
    display: flex;
    justify-content: center;
    align-items: center;
}

.VijilconLogo {
    width: 400px;
    max-width: 80%;
    height: auto;
    background: url(images/vijillogobig.JPG) no-repeat center;
    background-size: contain;
}

/* Right side panel (login form container) */
.Rectangle3 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #374151;
    border-radius: 12px;
    margin: auto;
    max-width: 700px;
    padding: 40px;
}

/* Title */
.VijilconDefenderSystem {
    font-family: 'Inter', var(--fallback-font-stack);
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: #F6EFEF;
    margin-bottom: 40px;
    text-align: center;
}

/* Login heading */
.Login {
    font-family: 'Inter', var(--fallback-font-stack);
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: #F6EFEF;
    margin-bottom: 20px;
    text-align: center;
}

/* Input fields */
.Rectangle4,
.Rectangle5 {
    width: 350px;
    max-width: 100%;
    min-height: 50px;
    background: #C2C2C2;
    border-radius: 12px;
    margin-top: 20px;
}

.Username,
.PassW {
    font-family: 'Inter', var(--fallback-font-stack);
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #F6EFEF;
    margin-top: 20px;
    text-align: left;
    width: 100%;
}

/* Forgot password link */
.ForgotPW {
    font-family: 'Inter', var(--fallback-font-stack);
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #F6EFEF;
    text-decoration: underline;
    text-align: right;
    margin-top: 20px;
    width: 100%;
}

/* Login button */
.AutoLayout {
    displa
