* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
body {
    display: flex;
    min-height: 100vh;
    background-color: #fff;
}

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

.left-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 40px;
}

.login-box {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    padding: 40px 35px;
}

.login-box h3 {
    color: #0d6efd;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
}

.login-box h2 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 25px;
    color: #111;
}

.login-box label {
    font-weight: 500;
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 6px;
}

.login-box input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #f5f8ff;
    font-size: 14px;
    margin-bottom: 15px;
    outline: none;
    transition: 0.2s;
}

.login-box input:focus {
    border-color: #0d6efd;
    background: #fff;
}

.login-box .actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
}

.login-box .actions a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.login-box button {
    width: 100%;
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.login-box button:hover {
    background: #0b5ed7;
}

.login-box .footer {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #555;
}

.login-box .footer a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

img.system-logo {
    max-width: 60%;
}
.d-flex {
    display: flex;
}
.right-panel {
    flex: 1;
    background: #e7f1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 30px 0 0 30px;
}

.right-panel img {
    width: 390px;
    max-width: 90%;
    margin-left: -87%;
}

@media (max-width: 850px) {
    .container {
        flex-direction: column;
    }
    .right-panel {
        display: none;
    }
    .left-panel {
        padding: 20px;
    }
    .login-box {
        box-shadow: none;
        padding: 30px 20px;
    }
}
