body, html {
            height: 100%;
            margin: 0;
        }
        .signup-container {
            height: 100%;
            display: flex;
        }
        .left-panel {
            background: linear-gradient(135deg, #e8e2d4 0%, #f0ebe0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .right-panel {
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        .signup-form {
            width: 100%;
            max-width: 400px;
        }
        .form-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0.5rem;
            text-align: center;
        }
        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #e2e8f0;
        }
        .divider span {
            background: #fff;
            padding: 0 1rem;
        }
        .form-control {
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 12px 16px;
            margin-bottom: 1rem;
        }
        .form-control:focus {
            border-color: #f7931e;
            box-shadow: 0 0 0 0.2rem rgba(247, 147, 30, 0.25);
        }
        .create-btn {
            background: #4a5568;
            border: none;
            color: #fff;
            padding: 12px 20px;
            border-radius: 8px;
            width: 100%;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }
        .create-btn:hover {
            background: #f7931e;
        }
        .login-link {
            text-align: center;
            color: #718096;
        }
        .login-link a {
            color: #f7931e;
            text-decoration: none;
        }
        .login-link a:hover {
            text-decoration: underline;
        }