body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f3f4f6;
}

.container {
    display: flex;
    height: 100vh;
}

.register-box {
    width: 40%;
    background: #7c83fd;
    padding: 60px;
    color: #fff;
}

.register-box h2 {
    margin-bottom: 30px;
}

.register-box form {
    display: flex;
    flex-direction: column;
}

.register-box input {
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}

.password-rules {
    font-size: 12px;
    margin-bottom: 20px;
}

.password-rules ul {
    padding-left: 18px;
}

button {
    padding: 12px;
    border: none;
    border-radius: 20px;
    background: white;
    color: #7c83fd;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #e6e6ff;
}

.error {
    background: #ff4d4d;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.success {
    background: #28a745;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.login-link {
    margin-top: 15px;
    font-size: 13px;
}

.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 !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px;
    margin-bottom: 24px;
}

.brand-icon {
    background: #f0f1ff;
    border-radius: 16px;
    width: 72px;
    height: 72px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-name {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    font-family: 'Arial Black', Arial, sans-serif;
}

.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;
}