* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;
}

/* MAIN WRAPPER */
.login-wrapper {
    display: flex;
    height: 100vh;
    background-image: url(../image/bg.jpg);
        background-position: center;
    background-size: cover;
}

/* LEFT SIDE */
.left-panel {
    flex: 1;
    position: relative;
    padding: 60px;
    color: #fff;
}

.left-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255,255,255,0.08), transparent),
        linear-gradient(240deg, rgba(255,255,255,0.06), transparent);
}

.brand {
    position: relative;
    z-index: 1;
}

.brand h2 {
    font-size: 26px;
    letter-spacing: 2px;
}

.brand p {
    margin-top: 10px;
    opacity: 0.8;
    font-size: 14px;
}

/* RIGHT SIDE */
.right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOGIN BOX */
.login-box {
        width: 600px;
    padding: 45px 32px;
    text-align: center;
    color: #fff;
    background: #00000052;

}

.user-icon {
  font-size: 60px;
    margin-bottom: 37px;
    color: #fff;
    font-weight: 500;
}

.login-box input {
      width: 100%;
    padding: 18px 14px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
    outline: none;
    background: #fff;
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 20px;
}

.options a {
    color: #d9ecff;
    text-decoration: none;
}

.options a:hover {
    text-decoration: underline;
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #0b5ed7;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    letter-spacing: 1px;
}

button:hover {
    background: #094fb2;
}
