body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f3f4f6;
}
.container {
    display: flex;
    height: 100vh;
}
.login-box {
    width: 40%;
    background: #7c83fd;
    padding: 60px;
    color: #fff;
}
.login-box h2 {
    margin-bottom: 30px;
}
.login-box form {
    display: flex;
    flex-direction: column;
}
.login-box input {
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}
.password-wrapper {
    position: relative;
}
.password-wrapper .toggle {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
.login-box button {
    padding: 12px;
    border: none;
    border-radius: 20px;
    background: white;
    color: #7c83fd;
    font-weight: bold;
    cursor: pointer;
}
.login-box button:hover {
    background: #e6e6ff;
}
.forgot {
    font-size: 12px;
    margin-bottom: 15px;
    color: #fff;
}
.register-text {
    font-size: 12px;
    margin-bottom: 20px;
}
.error {
    background: #ff4d4d;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}
.welcome-box {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    text-align: center;
    overflow: hidden;
}
.welcome-box h3 {
    font-size: 16px;
    font-weight: 400;
    color: #888;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.brand-icon {
    background: #f0f1ff;
    border-radius: 16px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-name {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.brand-re {
    color: #1e1e2e;
}

.brand-claim {
    color: #1e1e2e;
}

.brand-qr {
    color: #7c83fd;
}

.tagline {
    font-size: 15px;
    color: #aaa;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 8px;
}