  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #c4b2d6;
            background-size: cover; background-position: center; 
            background-repeat: no-repeat;
            background-attachment: fixed; color: rgb(158, 146, 185);
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        
        .login-wrapper {
            display: flex;
            width: 800px;
            background-color: rgb(208, 149, 245);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .image-section {
            flex: 1;
            background-color: #be92ec;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px;
        }
        
        .image-section img {
            max-width: 100%;
            height: auto;
        }
        
        .form-section {
            background-color: #a48fe4;
            flex: 1;
            padding: 40px;
        }
        
        .form-group {
            color: #333;
            margin-bottom: 20px;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #9d82f5;
            border-radius: 6px;
            font-size: 16px;
            transition: border 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #b28be6;
        }
        
        .captcha-container {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .captcha-input {
            flex: 1;
        }
        
        .captcha-display {
            background-color: #f1f1f1;
            padding: 12px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            user-select: none;
            min-width: 100px;
            text-align: center;
        }
        
        .btn-login {
            background-color: #c39cdd;
            color: white;
            border: none;
            border-radius: 6px;
            padding: 12px;
            width: 100%;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .btn-login:hover {
            background-color: #844ea8;
        }
        
        .switch-form {
            margin-top: 20px;
            color: #28084d;
            text-align: center;
        }
        
        .switch-form a {
            color: #c80cee;
            text-decoration: none;
            font-weight: 500;
            cursor: pointer;
        }