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

body {
    display: flex;
    height: 100vh;
    background-color: #fff;
    color: #333;
}

.login-container {
    display: flex;
    width: 100%;
    height: 100%;
}

/* LEFT PANEL (Dark Blue Background) */
.left-panel {
    flex: 1.2;
    background: #060b45; /* Dark navy blue from the reference */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px;
    position: relative;
    overflow: hidden;
}

.content-z {
    z-index: 10;
    position: relative;
}

.left-panel h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.left-panel h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
}

/* DECORATIVE ELEMENTS - LEFT PANEL */
.decor-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

/* Large circle top right of left panel */
.circle-1 {
    width: 250px;
    height: 250px;
    top: -50px;
    right: -80px;
}

/* Smaller circle bottom left */
.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 20%;
}

.decor-ring {
    position: absolute;
    border-radius: 50%;
    border: 15px solid rgba(255, 255, 255, 0.05);
}

/* Ring next to title */
.ring-1 {
    width: 80px;
    height: 80px;
    top: 35%;
    right: 25%;
}

.decor-dots {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.dots-1 { top: 20%; right: 15%; }
.dots-2 { top: 45%; right: 40%; }
.dots-3 { bottom: 25%; left: 35%; }

.decor-hash {
    position: absolute;
    width: 80px;
    height: 50px;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 8px,
        rgba(255,255,255,0.15) 8px,
        rgba(255,255,255,0.15) 9px
    );
}

.hash-1 {
    top: 15%;
    left: 30%;
}

/* RIGHT PANEL (White Background) */
.right-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Ring top left of right panel */
.ring-2 {
    width: 50px;
    height: 50px;
    top: 80px;
    left: 80px;
    border: 3px solid #e0e0e0;
}

/* Outlined quarter circle top right */
.quarter-circle {
    width: 250px;
    height: 250px;
    top: -125px;
    right: -125px;
    background: transparent;
    border: 2px solid #060b45;
}

/* Login form box */
.login-box {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    z-index: 10;
}

.title-container {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
}

.title-container h2 {
    font-size: 3rem;
    color: #060b45;
    font-weight: 700;
}

/* Small dot next to Login text */
.decor-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #e0e0e0;
    border-radius: 50%;
    top: 15px;
    right: 80px;
}

/* FORM ELEMENTS */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #060b45;
}

.forgot-password {
    text-align: right;
    margin-top: -15px;
    margin-bottom: 30px;
}

.forgot-password a {
    color: #060b45;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 15px;
    background-color: #060b45;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 25px;
    margin-top: 30px;
}

.login-btn:hover {
    background-color: #0a1165;
}

.extra-links {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

.extra-links a {
    color: #060b45;
    text-decoration: none;
    font-weight: 600;
}

.public-huid {
    text-align: center;
    margin-bottom: 30px;
}

.public-huid a {
    color: #060b45;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.error-msg {
    color: #dc3545;
    background: #f8d7da;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 900px) {
    .login-container {
        flex-direction: column;
    }
    
    .left-panel {
        padding: 50px;
        flex: auto;
    }
    
    .right-panel {
        padding: 50px 30px;
        flex: auto;
    }
}
